diff --git a/colorbleed/plugins/maya/create/colorbleed_setdress.py b/colorbleed/plugins/maya/create/colorbleed_setdress.py new file mode 100644 index 0000000000..45f3ffcf84 --- /dev/null +++ b/colorbleed/plugins/maya/create/colorbleed_setdress.py @@ -0,0 +1,9 @@ +import avalon.maya + + +class CreateSetdress(avalon.maya.Creator): + """Skeleton and controls for manipulation of the geometry""" + + name = "setDress" + label = "Setdress" + family = "colorbleed.setdress" diff --git a/colorbleed/plugins/maya/publish/collect_setdress.py b/colorbleed/plugins/maya/publish/collect_setdress.py new file mode 100644 index 0000000000..dda47cd7d5 --- /dev/null +++ b/colorbleed/plugins/maya/publish/collect_setdress.py @@ -0,0 +1,13 @@ +from maya import cmds + +import pyblish.api + + +class CollectSetdress(pyblish.api.InstancePlugin): + + order = pyblish.api.CollectorOrder + 0.499 + label = 'Collect Model Data' + families = ["colorbleed.setdress"] + + def process(self, instance): + pass