mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
33 lines
896 B
Python
33 lines
896 B
Python
import pype.maya.plugin
|
|
|
|
|
|
class MayaAsciiLoader(pype.maya.plugin.ReferenceLoader):
|
|
"""Load the model"""
|
|
|
|
families = ["mayaAscii"]
|
|
representations = ["ma"]
|
|
|
|
label = "Reference Maya Ascii"
|
|
order = -10
|
|
icon = "code-fork"
|
|
color = "orange"
|
|
|
|
def process_reference(self, context, name, namespace, data):
|
|
|
|
import maya.cmds as cmds
|
|
from avalon import maya
|
|
|
|
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)
|