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>2011-04-08 17:32:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-08 17:32:56 +0400
commit70cd0803ab1552e3ec625070a8753349ec704e78 (patch)
treeddd9f30250bdb6df174a1063226f0ce07254f381 /source/blender/makesrna/RNA_types.h
parent2b955490795892f702b87247fd5c5f35124b7c1d (diff)
add new subtype PROP_COORDS, for generic coordinates that are not to be changed by units.
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index e19ae4cf56d..3a15146770f 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -127,6 +127,7 @@ typedef enum PropertySubType {
PROP_XYZ = 29,
PROP_XYZ_LENGTH = 29|PROP_UNIT_LENGTH,
PROP_COLOR_GAMMA = 30,
+ PROP_COORDS = 31, /* generic array, no units applied, only that x/y/z/w are used (python vec) */
/* booleans */
PROP_LAYER = 40,