diff options
Diffstat (limited to 'scene/property_list_helper.cpp')
-rw-r--r-- | scene/property_list_helper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/property_list_helper.cpp b/scene/property_list_helper.cpp index f840aaa759..c6c21e0dba 100644 --- a/scene/property_list_helper.cpp +++ b/scene/property_list_helper.cpp @@ -142,7 +142,7 @@ void PropertyListHelper::get_property_list(List<PropertyInfo> *p_list) const { const Property &property = E.value; PropertyInfo info = property.info; - if (_call_getter(&property, i) == property.default_value) { + if (!(info.usage & PROPERTY_USAGE_STORE_IF_NULL) && _call_getter(&property, i) == property.default_value) { info.usage &= (~PROPERTY_USAGE_STORAGE); } |