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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-11 05:43:50 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-11 05:43:50 +0400
commit344449e483fa943ae3eb5acb446dd45ca1cfaca2 (patch)
tree4bf4c455fe5956d5d848fa1492c2b04e4e8d4bb3 /source/blender/makesrna/RNA_types.h
parent728767bad74a56ea93dc77b812ce6e8e0366cced (diff)
RNA:
* Added REQUIRED flag for function parameters. * Made dupliframes/verts/faces/groups an enum, and make it editable. * Enum bitflags were broken, fixed.
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 4ea97041f83..2020ca1edb8 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -89,6 +89,9 @@ typedef enum PropertyFlag {
* and collections */
PROP_ANIMATEABLE = 2,
+ /* function paramater flags */
+ PROP_REQUIRED = 4,
+
/* internal flags */
PROP_BUILTIN = 128,
PROP_EXPORT = 256,