cleaning up family names

This commit is contained in:
Milan Kolar 2018-10-18 13:59:58 +02:00
parent 7bd49bfd4e
commit 7b9ea27f39
164 changed files with 1542 additions and 383 deletions

View file

@ -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"

View file

@ -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)"

View file

@ -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

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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})

View file

@ -3,7 +3,7 @@ from avalon import api
class SetDressLoader(api.Loader):
families = ["studio.setdress"]
families = ["setdress"]
representations = ["json"]
label = "Load Set Dress"

View file

@ -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"

View file

@ -3,7 +3,7 @@ from avalon import api
class LoadVDBtoVRay(api.Loader):
families = ["studio.vdbcache"]
families = ["vdbcache"]
representations = ["vdb"]
label = "Load VDB to VRay"

View file

@ -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"

View file

@ -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"

View file

@ -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"