diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2023-01-10 00:04:35 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2023-01-24 16:05:07 -0600 |
commit | 2bc0bcbd26c809ce09f6c869515ce68d18120fdf (patch) | |
tree | 2d1ef986203c14356e6be03224777e9eace59db0 /scene/resources/skeleton_modification_2d_stackholder.cpp | |
parent | fab9926a958ffb5771c59a93f4416d3f3df45240 (diff) | |
download | redot-engine-2bc0bcbd26c809ce09f6c869515ce68d18120fdf.tar.gz |
PropertyUsage: Rename "DO_NOT_SHARE_ON_DUPLICATE" to "ALWAYS_DUPLICATE"
Diffstat (limited to 'scene/resources/skeleton_modification_2d_stackholder.cpp')
-rw-r--r-- | scene/resources/skeleton_modification_2d_stackholder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/skeleton_modification_2d_stackholder.cpp b/scene/resources/skeleton_modification_2d_stackholder.cpp index 121108965b..34d31bac8a 100644 --- a/scene/resources/skeleton_modification_2d_stackholder.cpp +++ b/scene/resources/skeleton_modification_2d_stackholder.cpp @@ -64,7 +64,7 @@ bool SkeletonModification2DStackHolder::_get(const StringName &p_path, Variant & } void SkeletonModification2DStackHolder::_get_property_list(List<PropertyInfo> *p_list) const { - p_list->push_back(PropertyInfo(Variant::OBJECT, "held_modification_stack", PROPERTY_HINT_RESOURCE_TYPE, "SkeletonModificationStack2D", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_DO_NOT_SHARE_ON_DUPLICATE)); + p_list->push_back(PropertyInfo(Variant::OBJECT, "held_modification_stack", PROPERTY_HINT_RESOURCE_TYPE, "SkeletonModificationStack2D", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_ALWAYS_DUPLICATE)); #ifdef TOOLS_ENABLED if (Engine::get_singleton()->is_editor_hint()) { |