summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorAndreaCatania <info@andreacatania.com>2018-01-11 19:50:33 +0100
committerAndreaCatania <info@andreacatania.com>2018-01-11 19:50:33 +0100
commit5ac441131ee83e535600af07212764e322cd16ce (patch)
treea1dce7fbefa0a7d4b62e235eb1b043ec2de31050 /core
parent4b414f45c47d699da4442ac2347c3b1684616cc0 (diff)
Fixed crash on duplicate GIProbe baking
Diffstat (limited to 'core')
-rw-r--r--core/object.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object.h b/core/object.h
index 5de87b8a7d..98ce62551b 100644
--- a/core/object.h
+++ b/core/object.h
@@ -111,6 +111,7 @@ enum PropertyUsageFlags {
PROPERTY_USAGE_CLASS_IS_ENUM = 1 << 18,
PROPERTY_USAGE_NIL_IS_VARIANT = 1 << 19,
PROPERTY_USAGE_INTERNAL = 1 << 20,
+ PROPERTY_USAGE_DO_NOT_SHARE_ON_DUPLICATE = 1 << 21, // If the object is duplicated also this property will be duplicated
PROPERTY_USAGE_DEFAULT = PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_NETWORK,
PROPERTY_USAGE_DEFAULT_INTL = PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_NETWORK | PROPERTY_USAGE_INTERNATIONALIZED,