Beispiel #1
0
 def select_guides(self):
     """
     select the guide joints
     :return:
     """
     if self.guide_joints:
         object_utils.select_object(self.guide_joints)
Beispiel #2
0
 def select_built_objects(self):
     """
     select the built objects
     :return: <bool> True for success
     """
     if self.controller_data:
         object_utils.select_object(self.controller_data['group_names'][-1])
Beispiel #3
0
 def select_blendshape(self):
     """
     selects the blendshape.
     """
     data = self.get_text_data()
     object_utils.select_object(data['blendShapeNode'])
     return True
Beispiel #4
0
 def select_guides(self):
     """
     select the guide joints
     :return: <bool> True for success.
     """
     if self.if_guides_exist:
         object_utils.select_object(self.guide_joints)
     return True