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>2009-11-18 23:01:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-18 23:01:35 +0300
commitae5a814f26e78dd65557773b5c00c341cdca1947 (patch)
treec605eed391e60b097820b501e588309d517acf07 /source/blender/makesrna/intern/rna_internal_types.h
parent5f6b9fd324162358ac482b151bc034e0006d6734 (diff)
ID properties that are displayed via RNA can now define their own UI settings,
only implimented min/max precision & step. at the moment there is no way to edit these other then via python example of setting UI limits... >>> C.object['foo'] = 0.5 >>> C.object['_RNA_UI'] = {'foo': {'step': 0.5, 'soft_max': 10.0, 'soft_min': 0.0, 'precision': 2, 'description': 'Some setting'}} Also fixed typo's: precission -> precision
Diffstat (limited to 'source/blender/makesrna/intern/rna_internal_types.h')
-rw-r--r--source/blender/makesrna/intern/rna_internal_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_internal_types.h b/source/blender/makesrna/intern/rna_internal_types.h
index db2063b899c..46ed1fa055f 100644
--- a/source/blender/makesrna/intern/rna_internal_types.h
+++ b/source/blender/makesrna/intern/rna_internal_types.h
@@ -47,6 +47,10 @@ struct GHash;
#define RNA_MAX_ARRAY_DIMENSION 3
+
+/* store local properties here */
+#define RNA_IDP_UI "_RNA_UI"
+
/* Function Callbacks */
typedef void (*UpdateFunc)(struct bContext *C, struct PointerRNA *ptr);