rename cb to pype

This commit is contained in:
Milan Kolar 2019-01-28 20:31:55 +01:00
parent b8bb1dd04f
commit c8ba94ccbf
218 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,36 @@
import colorbleed.maya.plugin
class FBXLoader(colorbleed.maya.plugin.ReferenceLoader):
"""Load the FBX"""
families = ["colorbleed.fbx"]
representations = ["fbx"]
label = "Reference FBX"
order = -10
icon = "code-fork"
color = "orange"
def process_reference(self, context, name, namespace, data):
import maya.cmds as cmds
from avalon import maya
# Ensure FBX plug-in is loaded
cmds.loadPlugin("fbxmaya", quiet=True)
with maya.maintained_selection():
nodes = cmds.file(self.fname,
namespace=namespace,
reference=True,
returnNewNodes=True,
groupReference=True,
groupName="{}:{}".format(namespace, name))
self[:] = nodes
return nodes
def switch(self, container, representation):
self.update(container, representation)