mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
cleaning up family names
This commit is contained in:
parent
7bd49bfd4e
commit
7b9ea27f39
164 changed files with 1542 additions and 383 deletions
|
|
@ -4,9 +4,9 @@ import pype.maya.plugin
|
|||
class AbcLoader(pype.maya.plugin.ReferenceLoader):
|
||||
"""Specific loader of Alembic for the avalon.animation family"""
|
||||
|
||||
families = ["studio.animation",
|
||||
"studio.camera",
|
||||
"studio.pointcache"]
|
||||
families = ["animation",
|
||||
"camera",
|
||||
"pointcache"]
|
||||
representations = ["abc"]
|
||||
|
||||
label = "Reference animation"
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ from avalon import api
|
|||
class SetFrameRangeLoader(api.Loader):
|
||||
"""Specific loader of Alembic for the avalon.animation family"""
|
||||
|
||||
families = ["studio.animation",
|
||||
"studio.camera",
|
||||
"studio.pointcache"]
|
||||
families = ["animation",
|
||||
"camera",
|
||||
"pointcache"]
|
||||
representations = ["abc"]
|
||||
|
||||
label = "Set frame range"
|
||||
|
|
@ -42,9 +42,9 @@ class SetFrameRangeLoader(api.Loader):
|
|||
class SetFrameRangeWithHandlesLoader(api.Loader):
|
||||
"""Specific loader of Alembic for the avalon.animation family"""
|
||||
|
||||
families = ["studio.animation",
|
||||
"studio.camera",
|
||||
"studio.pointcache"]
|
||||
families = ["animation",
|
||||
"camera",
|
||||
"pointcache"]
|
||||
representations = ["abc"]
|
||||
|
||||
label = "Set frame range (with handles)"
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ import pype.maya.plugin
|
|||
class AbcLoader(pype.maya.plugin.ReferenceLoader):
|
||||
"""Specific loader of Alembic for the studio.animation family"""
|
||||
|
||||
families = ["studio.animation",
|
||||
"studio.pointcache"]
|
||||
families = ["animation",
|
||||
"pointcache"]
|
||||
label = "Reference animation"
|
||||
representations = ["abc"]
|
||||
order = -10
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import pype.maya.plugin
|
|||
class CameraLoader(pype.maya.plugin.ReferenceLoader):
|
||||
"""Specific loader of Alembic for the studio.camera family"""
|
||||
|
||||
families = ["studio.camera"]
|
||||
families = ["camera"]
|
||||
label = "Reference camera"
|
||||
representations = ["abc", "ma"]
|
||||
order = -10
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import pype.maya.plugin
|
|||
class LookLoader(pype.maya.plugin.ReferenceLoader):
|
||||
"""Specific loader for lookdev"""
|
||||
|
||||
families = ["studio.look"]
|
||||
families = ["look"]
|
||||
representations = ["ma"]
|
||||
|
||||
label = "Reference look"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import pype.maya.plugin
|
|||
class MayaAsciiLoader(pype.maya.plugin.ReferenceLoader):
|
||||
"""Load the model"""
|
||||
|
||||
families = ["studio.mayaAscii"]
|
||||
families = ["mayaAscii"]
|
||||
representations = ["ma"]
|
||||
|
||||
label = "Reference Maya Ascii"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import pype.maya.plugin
|
|||
class ModelLoader(pype.maya.plugin.ReferenceLoader):
|
||||
"""Load the model"""
|
||||
|
||||
families = ["studio.model"]
|
||||
families = ["model"]
|
||||
representations = ["ma"]
|
||||
|
||||
label = "Reference Model"
|
||||
|
|
@ -37,7 +37,7 @@ class ModelLoader(pype.maya.plugin.ReferenceLoader):
|
|||
class GpuCacheLoader(api.Loader):
|
||||
"""Load model Alembic as gpuCache"""
|
||||
|
||||
families = ["studio.model"]
|
||||
families = ["model"]
|
||||
representations = ["abc"]
|
||||
|
||||
label = "Import Gpu Cache"
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ class RigLoader(pype.maya.plugin.ReferenceLoader):
|
|||
|
||||
"""
|
||||
|
||||
families = ["studio.rig"]
|
||||
families = ["rig"]
|
||||
representations = ["ma"]
|
||||
|
||||
label = "Reference rig"
|
||||
|
|
@ -62,7 +62,7 @@ class RigLoader(pype.maya.plugin.ReferenceLoader):
|
|||
cmds.select([output, controls] + roots, noExpand=True)
|
||||
api.create(name=namespace,
|
||||
asset=asset,
|
||||
family="studio.animation",
|
||||
family="animation",
|
||||
options={"useSelection": True},
|
||||
data={"dependencies": dependency})
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ from avalon import api
|
|||
|
||||
class SetDressLoader(api.Loader):
|
||||
|
||||
families = ["studio.setdress"]
|
||||
families = ["setdress"]
|
||||
representations = ["json"]
|
||||
|
||||
label = "Load Set Dress"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from avalon import api
|
|||
class LoadVDBtoRedShift(api.Loader):
|
||||
"""Load OpenVDB in a Redshift Volume Shape"""
|
||||
|
||||
families = ["studio.vdbcache"]
|
||||
families = ["vdbcache"]
|
||||
representations = ["vdb"]
|
||||
|
||||
label = "Load VDB to RedShift"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ from avalon import api
|
|||
|
||||
class LoadVDBtoVRay(api.Loader):
|
||||
|
||||
families = ["studio.vdbcache"]
|
||||
families = ["vdbcache"]
|
||||
representations = ["vdb"]
|
||||
|
||||
label = "Load VDB to VRay"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import maya.cmds as cmds
|
|||
class VRayProxyLoader(api.Loader):
|
||||
"""Load VRayMesh proxy"""
|
||||
|
||||
families = ["studio.vrayproxy"]
|
||||
families = ["vrayproxy"]
|
||||
representations = ["vrmesh"]
|
||||
|
||||
label = "Import VRay Proxy"
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ from pype.maya import lib
|
|||
|
||||
class YetiCacheLoader(api.Loader):
|
||||
|
||||
families = ["studio.yeticache", "studio.yetiRig"]
|
||||
families = ["yeticache", "yetiRig"]
|
||||
representations = ["fur"]
|
||||
|
||||
label = "Load Yeti Cache"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import pype.maya.plugin
|
|||
|
||||
class YetiRigLoader(pype.maya.plugin.ReferenceLoader):
|
||||
|
||||
families = ["studio.yetiRig"]
|
||||
families = ["yetiRig"]
|
||||
representations = ["ma"]
|
||||
|
||||
label = "Load Yeti Rig"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue