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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-09-10 20:07:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-10 20:07:18 +0400
commitbf18e89396d917c85d83812346aa4d0e41feee3c (patch)
tree8d92ca8dbdf3a586ee6a200b94c7ea42fdd9632f /release
parent5416fee99afb3b69741c99eaf648f176b5a42fe0 (diff)
fix for error updating rigify UI classes
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_data_armature_rigify.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_data_armature_rigify.py b/release/scripts/ui/properties_data_armature_rigify.py
index 3978c9ab3f3..ef96e094928 100644
--- a/release/scripts/ui/properties_data_armature_rigify.py
+++ b/release/scripts/ui/properties_data_armature_rigify.py
@@ -23,12 +23,12 @@ from bpy.props import *
class PoseTemplate(bpy.types.IDPropertyGroup):
name = StringProperty(name="Name of the slave", description="", maxlen=64, default="")
- active_template_index = IntProperty(name="Index of the active slave", description="", default=-1, min=-1, max=65535)
- use_generate_deform_rig = BoolProperty(name="Create Deform Rig", description="Create a copy of the metarig, constrainted by the generated rig", default=False)
class PoseTemplateSettings(bpy.types.IDPropertyGroup):
templates = CollectionProperty(type=PoseTemplate, name="Templates", description="")
+ active_template_index = IntProperty(name="Index of the active slave", description="", default=-1, min=-1, max=65535)
+ use_generate_deform_rig = BoolProperty(name="Create Deform Rig", description="Create a copy of the metarig, constrainted by the generated rig", default=False)
def metarig_templates():