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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-06-05 12:58:56 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-06-05 13:08:18 +0300
commit856d36e4b810a78d1dcb96ebed08b07b60bda9c8 (patch)
tree3030859adbc49714d5d6bd6c8b4dda7aac17e93a /source/blender/makesrna/RNA_types.h
parentcb42ad8c7595c8f5c157302c220e6107f07b847c (diff)
Static Override: progresses towards full support for material slots.
Material slots are a real pain to get working, due to all the black magic they do to hide object vs. obdata storage of the material... Currently hitting an order problem - we need to always set 'link' (to object or obdata) property of the slot first, before we set its material... *super-sigh*
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 1e7b8605c76..9d304018990 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -262,7 +262,7 @@ typedef enum PropertyOverrideFlag {
/* Only use indices to compare items in the property, never names (collections only). */
/* Useful when nameprop of the items is generated from other data
* (e.g. name of material slots is actually name of assigned material). */
- PROPOVERRIDE_INDEX_ONLY = (1 << 11),
+ PROPOVERRIDE_NO_PROP_NAME = (1 << 11),
} PropertyOverrideFlag;
/* Function parameters flags.