fix for error updating rigify UI classes

This commit is contained in:
Campbell Barton 2010-09-10 16:07:18 +00:00
parent 5416fee99a
commit bf18e89396

@ -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():