From 0c07929575c6d74963f6199271399926096d481b Mon Sep 17 00:00:00 2001 From: jsjtxietian Date: Fri, 22 Mar 2024 16:36:52 +0800 Subject: [PATCH] Remove unnecessary condition check in animation mixer's _blend_process --- scene/animation/animation_mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/animation/animation_mixer.cpp b/scene/animation/animation_mixer.cpp index 7080a5338bce..0b1bf1738c33 100644 --- a/scene/animation/animation_mixer.cpp +++ b/scene/animation/animation_mixer.cpp @@ -1634,7 +1634,7 @@ void AnimationMixer::_blend_process(double p_delta, bool p_update_only) { default: break; } - if (player2->is_playing() || seeked) { + if (player2->is_playing()) { player2->seek(at_anim_pos); player2->play(anim_name); t->playing = true;