summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_player.cpp
diff options
context:
space:
mode:
authorSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2024-06-07 17:51:19 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2024-06-08 22:09:37 +0900
commitbea47d877bd36bb33d22c7c8f7a070200af3bdc5 (patch)
tree222772900eeef7839be4328e34b8fc7ce39d1bb2 /scene/animation/animation_player.cpp
parente96ad5af98547df71b50c4c4695ac348638113e0 (diff)
downloadredot-engine-bea47d877bd36bb33d22c7c8f7a070200af3bdc5.tar.gz
Fix seeking Animation immediate after playback for Discrete track
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r--scene/animation/animation_player.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp
index 0c24d79ad7..5756edaa48 100644
--- a/scene/animation/animation_player.cpp
+++ b/scene/animation/animation_player.cpp
@@ -234,6 +234,9 @@ void AnimationPlayer::_process_playback_data(PlaybackData &cd, double p_delta, f
pi.delta = delta;
pi.seeked = p_seeked;
}
+ if (Math::is_zero_approx(pi.delta) && backwards) {
+ pi.delta = -0.0; // Sign is needed to handle converted Continuous track from Discrete track correctly.
+ }
// AnimationPlayer doesn't have internal seeking.
// However, immediately after playback, discrete keys should be retrieved with EXACT mode since behind keys must be ignored at that time.
pi.is_external_seeking = !p_started;
@@ -257,7 +260,7 @@ void AnimationPlayer::_blend_playback_data(double p_delta, bool p_started) {
bool seeked = c.seeked; // The animation may be changed during process, so it is safer that the state is changed before process.
- if (p_delta != 0) {
+ if (!Math::is_zero_approx(p_delta)) {
c.seeked = false;
}
@@ -581,6 +584,8 @@ void AnimationPlayer::seek(double p_time, bool p_update, bool p_update_only) {
return;
}
+ bool is_backward = p_time < playback.current.pos;
+
_check_immediately_after_start();
playback.current.pos = p_time;
@@ -596,7 +601,7 @@ void AnimationPlayer::seek(double p_time, bool p_update, bool p_update_only) {
playback.seeked = true;
if (p_update) {
- _process_animation(0, p_update_only);
+ _process_animation(is_backward ? -0.0 : 0.0, p_update_only);
playback.seeked = false; // If animation was proceeded here, no more seek in internal process.
}
}