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-06-07 14:54:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-07 14:54:57 +0400
commit9c8cc9fe60e783f698e291ed5ef338a477214f22 (patch)
tree863dd56a0ae42db495801ab436022d92df3d543b /source/blender/makesrna/RNA_types.h
parent3cd3cc892faa864cde4171b1752679bfb062066b (diff)
rna option not to save certain properties for redoing later, currently only used by operator presets.
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 090b87e9e39..ec213d6a496 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -159,6 +159,8 @@ typedef enum PropertyFlag {
/* hidden in the user interface */
PROP_HIDDEN = 1<<19,
+ /* do not write in presets */
+ PROP_SKIP_SAVE = 1<<28,
/* function paramater flags */
PROP_REQUIRED = 1<<2,