From 556c218ab397126a9671beaa0dbe28d1a5249ee1 Mon Sep 17 00:00:00 2001 From: Doug Hammond <doughammond@hamsterfight.co.uk> Date: Tue, 28 Jun 2011 13:03:08 +0000 Subject: [PATCH] extensions_framework: update property creation code to support new property types and their options --- modules/extensions_framework/__init__.py | 39 +++++++++++++++--------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/modules/extensions_framework/__init__.py b/modules/extensions_framework/__init__.py index 32fc924ed..b34940429 100644 --- a/modules/extensions_framework/__init__.py +++ b/modules/extensions_framework/__init__.py @@ -68,43 +68,54 @@ def init_properties(obj, props, cache=True): if prop['type'] == 'bool': t = bpy.props.BoolProperty - a = {k: v for k,v in prop.items() if k in ['name', - 'description','default']} + a = {k: v for k,v in prop.items() if k in ["name", + "description","default","options","subtype","update"]} + elif prop['type'] == 'bool_vector': + t = bpy.props.BoolVectorProperty + a = {k: v for k,v in prop.items() if k in ["name", + "description","default","options","subtype","size", + "update"]} elif prop['type'] == 'collection': t = bpy.props.CollectionProperty - a = {k: v for k,v in prop.items() if k in ["ptype", "name", - "description"]} + a = {k: v for k,v in prop.items() if k in ["ptype","name", + "description","default","options"]} a['type'] = a['ptype'] del a['ptype'] elif prop['type'] == 'enum': t = bpy.props.EnumProperty - a = {k: v for k,v in prop.items() if k in ["items", "name", - "description", "default"]} + a = {k: v for k,v in prop.items() if k in ["items","name", + "description","default","options","update"]} elif prop['type'] == 'float': t = bpy.props.FloatProperty a = {k: v for k,v in prop.items() if k in ["name", - "description", "min", "max", "soft_min", "soft_max", - "default", "precision"]} + "description","default","min","max","soft_min","soft_max", + "step","precision","options","subtype","unit","update"]} elif prop['type'] == 'float_vector': t = bpy.props.FloatVectorProperty a = {k: v for k,v in prop.items() if k in ["name", - "description", "min", "max", "soft_min", "soft_max", - "default", "precision", "size", "subtype"]} + "description","default","min","max","soft_min","soft_max", + "step","precision","options","subtype","size","update"]} elif prop['type'] == 'int': t = bpy.props.IntProperty a = {k: v for k,v in prop.items() if k in ["name", - "description", "min", "max", "soft_min", "soft_max", - "default"]} + "description","default","min","max","soft_min","soft_max", + "step","options","subtype","update"]} + elif prop['type'] == 'int_vector': + t = bpy.props.IntVectorProperty + a = {k: v for k,v in prop.items() if k in ["name", + "description","default","min","max","soft_min","soft_max", + "options","subtype","size","update"]} elif prop['type'] == 'pointer': t = bpy.props.PointerProperty a = {k: v for k,v in prop.items() if k in ["ptype", "name", - "description"]} + "description","options","update"]} a['type'] = a['ptype'] del a['ptype'] elif prop['type'] == 'string': t = bpy.props.StringProperty a = {k: v for k,v in prop.items() if k in ["name", - "description", "maxlen", "default", "subtype"]} + "description","default","maxlen","options","subtype", + "update"]} else: continue -- GitLab