summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Felis <martin@fysx.org>2023-10-22 16:42:08 +0200
committerMartin Felis <martin@fysx.org>2023-11-14 08:30:40 +0100
commitf04ec34b78b0a1fe930abb59433cfcf0f9645939 (patch)
tree552f35df825454a1db358930f47c6119e710784a
parent8c25a98fdf68dc388eddaefa188f3386236cdfe4 (diff)
downloadredot-engine-f04ec34b78b0a1fe930abb59433cfcf0f9645939.tar.gz
Ensure AnimationPlayer evaluate animations when autoplay is enabled and node becomes ready.
Fixes #83326. The issue was introduced in the refactoring done in 1b95827d3ef244de322b0c16deb49fefe48ed1a1.
-rw-r--r--scene/animation/animation_player.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp
index b3285d4cfc..df7044d005 100644
--- a/scene/animation/animation_player.cpp
+++ b/scene/animation/animation_player.cpp
@@ -151,6 +151,7 @@ void AnimationPlayer::_notification(int p_what) {
if (!Engine::get_singleton()->is_editor_hint() && animation_set.has(autoplay)) {
set_active(true);
play(autoplay);
+ seek(0, true);
}
} break;
}