diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-09-20 16:21:03 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-09-20 16:21:03 +0800 |
commit | f169616cc6b394b5ba95e2d1d99f217552dab60f (patch) | |
tree | 2b0686d88c2e0ef8ffaa7548fc174d4a772a3bca /scene/animation | |
parent | 0a4aedb36065f66fc7e99cb2e6de3e55242f9dfb (diff) | |
download | redot-engine-f169616cc6b394b5ba95e2d1d99f217552dab60f.tar.gz |
Update AnimationTree parameter list when updating AnimationNodeTransition input names
Diffstat (limited to 'scene/animation')
-rw-r--r-- | scene/animation/animation_blend_tree.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scene/animation/animation_blend_tree.cpp b/scene/animation/animation_blend_tree.cpp index cdc85d2b2d..a96417738f 100644 --- a/scene/animation/animation_blend_tree.cpp +++ b/scene/animation/animation_blend_tree.cpp @@ -1139,7 +1139,11 @@ void AnimationNodeTransition::remove_input(int p_index) { bool AnimationNodeTransition::set_input_name(int p_input, const String &p_name) { pending_update = true; - return AnimationNode::set_input_name(p_input, p_name); + if (!AnimationNode::set_input_name(p_input, p_name)) { + return false; + } + emit_signal(SNAME("tree_changed")); // For updating enum options. + return true; } void AnimationNodeTransition::set_input_as_auto_advance(int p_input, bool p_enable) { |