summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_player.cpp
diff options
context:
space:
mode:
authorSilc 'Tokage' Renew <61938263+TokageItLab@users.noreply.github.com>2023-10-06 15:47:10 +0900
committerSilc 'Tokage' Renew <61938263+TokageItLab@users.noreply.github.com>2023-10-06 15:47:54 +0900
commitd46c962f1850ee8aca933d147a1997156c69069d (patch)
treee0880f37cc680cdf55ffc6db56257b89dbbb2987 /scene/animation/animation_player.cpp
parent9e455f424a635549b295272d82757c7ff99f33d7 (diff)
downloadredot-engine-d46c962f1850ee8aca933d147a1997156c69069d.tar.gz
Fix AnimationPlayer::play() process unwanted start
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r--scene/animation/animation_player.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp
index a886831fdb..2d4f2cbceb 100644
--- a/scene/animation/animation_player.cpp
+++ b/scene/animation/animation_player.cpp
@@ -415,9 +415,16 @@ void AnimationPlayer::play(const StringName &p_name, double p_custom_blend, floa
}
c.current.from = &animation_set[name];
+ c.current.speed_scale = p_custom_scale;
+
+ if (!end_reached) {
+ playback_queue.clear();
+ }
if (c.assigned != name) { // Reset.
c.current.pos = p_from_end ? c.current.from->animation->get_length() : 0;
+ c.assigned = name;
+ emit_signal(SNAME("current_animation_changed"), c.assigned);
} else {
if (p_from_end && c.current.pos == 0) {
// Animation reset but played backwards, set position to the end.
@@ -425,18 +432,14 @@ void AnimationPlayer::play(const StringName &p_name, double p_custom_blend, floa
} else if (!p_from_end && c.current.pos == c.current.from->animation->get_length()) {
// Animation resumed but already ended, set position to the beginning.
c.current.pos = 0;
+ } else if (playing) {
+ return;
}
}
- c.current.speed_scale = p_custom_scale;
- c.assigned = name;
- emit_signal(SNAME("current_animation_changed"), c.assigned);
c.seeked = false;
c.started = true;
- if (!end_reached) {
- playback_queue.clear();
- }
_set_process(true); // Always process when starting an animation.
playing = true;