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 <b.mont29@gmail.com>2020-03-12 20:04:33 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-03-12 20:08:11 +0300
commit4669dfe2cc2441e55bbd432c690047c4828d1c39 (patch)
tree34aaa46a9bb66a33907ca7b3445588a90bc26707
parent38ba02285846423994c1c58f6e8477ab432c68a7 (diff)
Expose 'is embedded data' ID flag to RNA.
Relevant currently for root node trees and master collections.
-rw-r--r--source/blender/makesrna/intern/rna_ID.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index 5c824dc6e93..bd5c7e755d6 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -1468,6 +1468,15 @@ static void rna_def_ID(BlenderRNA *brna)
RNA_def_property_ui_icon(prop, ICON_FAKE_USER_OFF, true);
RNA_def_property_boolean_funcs(prop, NULL, "rna_ID_fake_user_set");
+ prop = RNA_def_property(srna, "is_embedded_data", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", LIB_EMBEDDED_DATA);
+ RNA_def_property_clear_flag(prop, PROP_EDITABLE);
+ RNA_def_property_ui_text(
+ prop,
+ "Embedded Data",
+ "This data-block is not an independant one, but is actually a sub-data of another ID "
+ "(typical example: root node trees or master collections)");
+
prop = RNA_def_property(srna, "tag", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "tag", LIB_TAG_DOIT);
RNA_def_property_flag(prop, PROP_LIB_EXCEPTION);