Rename BlenderCreator into BaseCreator

This commit is contained in:
Sharkitty 2023-11-02 11:42:39 +01:00
parent 4f658d2f51
commit 59bb86dc33
10 changed files with 10 additions and 10 deletions

View file

@ -140,7 +140,7 @@ def deselect_all():
bpy.context.view_layer.objects.active = active
class BlenderCreator(Creator):
class BaseCreator(Creator):
"""Base class for Blender Creator plug-ins."""
defaults = ['Main']

View file

@ -8,7 +8,7 @@ from openpype.hosts.blender.api import lib
from openpype.hosts.blender.api.pipeline import AVALON_PROPERTY
class CreateAction(openpype.hosts.blender.api.plugin.BlenderCreator):
class CreateAction(openpype.hosts.blender.api.plugin.BaseCreator):
"""Action output for character rigs"""
identifier = "io.openpype.creators.blender.action"

View file

@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
)
class CreateAnimation(plugin.BlenderCreator):
class CreateAnimation(plugin.BaseCreator):
"""Animation output for character rigs"""
identifier = "io.openpype.creators.blender.animation"

View file

@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
)
class CreateCamera(plugin.BlenderCreator):
class CreateCamera(plugin.BaseCreator):
"""Polygonal static geometry"""
identifier = "io.openpype.creators.blender.camera"

View file

@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
)
class CreateLayout(plugin.BlenderCreator):
class CreateLayout(plugin.BaseCreator):
"""Layout output for character rigs"""
identifier = "io.openpype.creators.blender.layout"

View file

@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
)
class CreateModel(plugin.BlenderCreator):
class CreateModel(plugin.BaseCreator):
"""Polygonal static geometry"""
identifier = "io.openpype.creators.blender.model"

View file

@ -8,7 +8,7 @@ from openpype.hosts.blender.api.pipeline import AVALON_INSTANCES
from openpype.hosts.blender.api.pipeline import AVALON_PROPERTY
class CreatePointcache(plugin.BlenderCreator):
class CreatePointcache(plugin.BaseCreator):
"""Polygonal static geometry"""
identifier = "io.openpype.creators.blender.pointcache"

View file

@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
)
class CreateRenderlayer(plugin.BlenderCreator):
class CreateRenderlayer(plugin.BaseCreator):
"""Single baked camera"""
name = "renderingMain"

View file

@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
)
class CreateReview(plugin.BlenderCreator):
class CreateReview(plugin.BaseCreator):
"""Single baked camera"""
identifier = "io.openpype.creators.blender.review"

View file

@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
)
class CreateRig(plugin.BlenderCreator):
class CreateRig(plugin.BaseCreator):
"""Artist-friendly rig with controls to direct motion"""
identifier = "io.openpype.creators.blender.rig"