diff options
author | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2023-12-01 04:50:58 +0900 |
---|---|---|
committer | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2023-12-01 04:50:58 +0900 |
commit | c380b1296a665979a2a200b13b3282e45a83d8c9 (patch) | |
tree | fe57d59ab4681be44422366f3fc15c836648b973 /scene/animation/animation_tree.cpp | |
parent | a0d764919276edfa1560a7c3d74fcd8708615398 (diff) | |
download | redot-engine-c380b1296a665979a2a200b13b3282e45a83d8c9.tar.gz |
Make unstore AnimationLibrary if AnimationTree is assigned Player
Diffstat (limited to 'scene/animation/animation_tree.cpp')
-rw-r--r-- | scene/animation/animation_tree.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index bdadc4ecac..a2b15a0e97 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -799,6 +799,9 @@ void AnimationTree::_validate_property(PropertyInfo &p_property) const { if (p_property.name == "root_node" || p_property.name.begins_with("libraries")) { p_property.usage |= PROPERTY_USAGE_READ_ONLY; } + if (p_property.name.begins_with("libraries")) { + p_property.usage &= ~PROPERTY_USAGE_STORAGE; + } } } |