mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
Rename BlenderCreator into BaseCreator
This commit is contained in:
parent
4f658d2f51
commit
59bb86dc33
10 changed files with 10 additions and 10 deletions
|
|
@ -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']
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ from openpype.hosts.blender.api.pipeline import (
|
|||
)
|
||||
|
||||
|
||||
class CreateRenderlayer(plugin.BlenderCreator):
|
||||
class CreateRenderlayer(plugin.BaseCreator):
|
||||
"""Single baked camera"""
|
||||
|
||||
name = "renderingMain"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue