From 85ce444455efade2772d2c5625a5b78de1d00dba Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 9 Dec 2013 15:40:41 +1100 Subject: Lattice Editmode: Select Mirror patch originally by Philipp Oeser with some edits. --- source/blender/makesrna/intern/rna_object.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/makesrna/intern/rna_object.c') 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" -- cgit v1.2.3