move maya ascii, sertdress and layout to reference loader

This commit is contained in:
Milan Kolar 2019-11-13 19:38:07 +01:00
parent f263eabe82
commit a94ce94ca1
2 changed files with 7 additions and 4 deletions

View file

@ -6,9 +6,7 @@ import os
class MayaAsciiLoader(pype.maya.plugin.ReferenceLoader):
"""Load the model"""
families = ["mayaAscii",
"setdress",
"layout"]
families = []
representations = ["ma"]
label = "Reference Maya Ascii"

View file

@ -8,7 +8,12 @@ reload(pype.maya.plugin)
class ReferenceLoader(pype.maya.plugin.ReferenceLoader):
"""Load the model"""
families = ["model", "pointcache", "animation"]
families = ["model",
"pointcache",
"animation",
"mayaAscii",
"setdress",
"layout"]
representations = ["ma", "abc"]
tool_names = ["loader"]