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>2013-12-09 08:40:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-09 08:41:54 +0400
commit85ce444455efade2772d2c5625a5b78de1d00dba (patch)
tree83157f7783197cd7074a83a6851a8d02b9d0e830 /source/blender/makesrna/intern/rna_object.c
parent5bd9730b17658ad4d4b0009a328545409a3c2bc1 (diff)
Lattice Editmode: Select Mirror
patch originally by Philipp Oeser with some edits.
Diffstat (limited to 'source/blender/makesrna/intern/rna_object.c')
-rw-r--r--source/blender/makesrna/intern/rna_object.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index eb0f30216f2..184e067299e 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -165,6 +165,14 @@ EnumPropertyItem object_axis_items[] = {
{0, NULL, 0, NULL, NULL}
};
+/* for general use (not just object) */
+EnumPropertyItem object_axis_unsigned_items[] = {
+ {0, "X", 0, "X", ""},
+ {1, "Y", 0, "Y", ""},
+ {2, "Z", 0, "Z", ""},
+ {0, NULL, 0, NULL, NULL}
+};
+
#ifdef RNA_RUNTIME
#include "BLI_math.h"