summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_player.cpp
diff options
context:
space:
mode:
authorSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-11-26 06:28:22 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-11-26 07:32:34 +0900
commitc36200b9a1c1e0853ddb604080975a8bf7290a5a (patch)
treea2f222303906cf26baf53b845c50ff83f167b58a /scene/animation/animation_player.cpp
parent1ba920fada9efc8c4476ded50fe673b8db541366 (diff)
downloadredot-engine-c36200b9a1c1e0853ddb604080975a8bf7290a5a.tar.gz
Check the seek process immediately after playback as a special case
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r--scene/animation/animation_player.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp
index a89bf8c8c1..6e7aec379b 100644
--- a/scene/animation/animation_player.cpp
+++ b/scene/animation/animation_player.cpp
@@ -151,7 +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);
+ _check_immediately_after_start();
}
} break;
}
@@ -522,8 +522,9 @@ void AnimationPlayer::seek(double p_time, bool p_update, bool p_update_only) {
return;
}
- playback.current.pos = p_time;
+ _check_immediately_after_start();
+ playback.current.pos = p_time;
if (!playback.current.from) {
if (playback.assigned) {
ERR_FAIL_COND_MSG(!animation_set.has(playback.assigned), vformat("Animation not found: %s.", playback.assigned));
@@ -534,7 +535,6 @@ void AnimationPlayer::seek(double p_time, bool p_update, bool p_update_only) {
}
}
- playback.started = false; // Start has already gone by seeking, delta does not need to be 0 in the internal process.
playback.seeked = true;
if (p_update) {
_process_animation(0, p_update_only);
@@ -543,10 +543,16 @@ void AnimationPlayer::seek(double p_time, bool p_update, bool p_update_only) {
}
void AnimationPlayer::advance(double p_time) {
- playback.started = false; // Start has already gone by advancing, delta does not need to be 0 in the internal process.
+ _check_immediately_after_start();
AnimationMixer::advance(p_time);
}
+void AnimationPlayer::_check_immediately_after_start() {
+ if (playback.started) {
+ _process_animation(0); // Force process current key for Discrete/Method/Audio/AnimationPlayback. Then, started flag is cleared.
+ }
+}
+
bool AnimationPlayer::is_valid() const {
return (playback.current.from);
}