Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Vegdahl <cessen@cessen.com>2014-09-26 07:24:03 +0400
committerNathan Vegdahl <cessen@cessen.com>2014-09-26 07:24:03 +0400
commitc35610f163a05f81951a2b069306b675294f4cb3 (patch)
tree645ec626585d90e3ba3c678ee739e9c36e81b7d1 /rigify/ui.py
parentfd695c3a81b63db072311e8516e0dbb8d4474047 (diff)
Rigify: new additions from PitchiPoy Animation Productions.
PitchiPoy Animation Productions is sharing its custom rig types with the Blender community at large. The new rig types all start with "pitchipoy." and are used in PitchiPoy's productions. Of particular interest is a face rig type for auto-rigging faces. Other rig types include: - Tentacles - Fingers - Arms/Legs - Spine/Torso Many thanks to PitchiPoy for their hard work and for sharing this back!
Diffstat (limited to 'rigify/ui.py')
-rw-r--r--rigify/ui.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/rigify/ui.py b/rigify/ui.py
index 376261e9..2d23b613 100644
--- a/rigify/ui.py
+++ b/rigify/ui.py
@@ -125,9 +125,10 @@ class DATA_PT_rigify_layer_names(bpy.types.Panel):
row = col.row()
row.prop(arm, "layers", index=i, text="", toggle=True)
split = row.split(percentage=0.8)
- split.prop(rigify_layer, "name", text="Layer %d" % (i + 1))
- split.prop(rigify_layer, "row", text="")
- #split.prop(rigify_layer, "column", text="")
+ split.prop(rigify_layer, "name", text="Layer %d" % (i + 1))
+ split.prop(rigify_layer, "row", text="")
+
+ #split.prop(rigify_layer, "column", text="")
class BONE_PT_rigify_buttons(bpy.types.Panel):
@@ -198,15 +199,10 @@ class BONE_PT_rigify_buttons(bpy.types.Panel):
class VIEW3D_PT_tools_rigify_dev(bpy.types.Panel):
- bl_category = "Tools"
bl_label = "Rigify Dev Tools"
bl_space_type = 'VIEW_3D'
bl_region_type = 'TOOLS'
- @classmethod
- def poll(cls, context):
- return context.mode == 'EDIT_ARMATURE' or context.mode == 'EDIT_MESH'
-
def draw(self, context):
obj = context.active_object
if obj != None:
@@ -424,7 +420,6 @@ def register():
bpy.utils.register_class(EncodeMetarig)
bpy.utils.register_class(EncodeMetarigSample)
bpy.utils.register_class(EncodeWidget)
-
#space_info.INFO_MT_armature_add.append(ui.menu_func)