From 21aeb2edd04d72d470a7fcf7aac532f7c1d3ecdc Mon Sep 17 00:00:00 2001 From: aardschok Date: Tue, 27 Jun 2017 13:55:10 +0200 Subject: [PATCH] cosmetics --- colorbleed/plugins/maya/create/colorbleed_rig.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)