summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-11-22 23:08:21 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-11-22 23:40:53 +0900
commit9c3104292dc232bb2976574015e72cfa22669809 (patch)
treed4d942a5d1a9cd427c3dfee626581548ee4cfdff
parent80de898d721f952dac0b102d48bb73d6b02ee1e8 (diff)
downloadredot-engine-9c3104292dc232bb2976574015e72cfa22669809.tar.gz
Clear seeked/started flag after seeking/advancing in AnimationPlayer
-rw-r--r--scene/animation/animation_player.cpp7
-rw-r--r--scene/animation/animation_player.h2
2 files changed, 9 insertions, 0 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp
index df7044d005..a89bf8c8c1 100644
--- a/scene/animation/animation_player.cpp
+++ b/scene/animation/animation_player.cpp
@@ -534,12 +534,19 @@ 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);
+ playback.seeked = false; // If animation was proceeded here, no more seek in internal process.
}
}
+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.
+ AnimationMixer::advance(p_time);
+}
+
bool AnimationPlayer::is_valid() const {
return (playback.current.from);
}
diff --git a/scene/animation/animation_player.h b/scene/animation/animation_player.h
index 51beb67260..0bab586088 100644
--- a/scene/animation/animation_player.h
+++ b/scene/animation/animation_player.h
@@ -183,6 +183,8 @@ public:
void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override;
+ virtual void advance(double p_time) override;
+
AnimationPlayer();
~AnimationPlayer();
};