mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
added setdress family and collector
This commit is contained in:
parent
b46b40806b
commit
017fe73609
2 changed files with 22 additions and 0 deletions
9
colorbleed/plugins/maya/create/colorbleed_setdress.py
Normal file
9
colorbleed/plugins/maya/create/colorbleed_setdress.py
Normal file
|
|
@ -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"
|
||||
13
colorbleed/plugins/maya/publish/collect_setdress.py
Normal file
13
colorbleed/plugins/maya/publish/collect_setdress.py
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue