diff --git a/colorbleed/plugins/maya/create/colorbleed_rig.py b/colorbleed/plugins/maya/create/colorbleed_rig.py index b29d5ae7e5..3fa718d756 100644 --- a/colorbleed/plugins/maya/create/colorbleed_rig.py +++ b/colorbleed/plugins/maya/create/colorbleed_rig.py @@ -1,6 +1,7 @@ -import avalon.maya from maya import cmds +import avalon.maya + class CreateRig(avalon.maya.Creator): """Skeleton and controls for manipulation of the geometry""" @@ -12,6 +13,8 @@ class CreateRig(avalon.maya.Creator): def process(self): instance = super(CreateRig, self).process() + self.log.info("Creating Rig instance set up ...") + controls = cmds.sets(name="controls_SET", empty=True) pointcache = cmds.sets(name="out_SET", empty=True) cmds.sets([controls, pointcache], forceElement=instance)