From 49e2c18e87b070cdb1721198a8e59a1897a473be Mon Sep 17 00:00:00 2001 From: Ryan <73148864+Ryan-000@users.noreply.github.com> Date: Tue, 17 Mar 2026 17:21:03 -0400 Subject: [PATCH] Fix incorrect parameter being set --- scene/animation/animation_blend_tree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/animation/animation_blend_tree.cpp b/scene/animation/animation_blend_tree.cpp index bcdc507072..4dcd921063 100644 --- a/scene/animation/animation_blend_tree.cpp +++ b/scene/animation/animation_blend_tree.cpp @@ -717,7 +717,7 @@ AnimationNode::NodeTimeInfo AnimationNodeOneShot::_process(ProcessState &p_proce } p_instance.set_parameter_fade_in_remaining(cur_fade_in_remaining, p_process_state.is_testing); - p_instance.set_parameter_fade_in_remaining(cur_fade_out_remaining, p_process_state.is_testing); + p_instance.set_parameter_fade_out_remaining(cur_fade_out_remaining, p_process_state.is_testing); return cur_internal_active ? os_nti : main_nti; }