diff options
author | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2024-05-19 23:00:29 +0900 |
---|---|---|
committer | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2024-05-21 05:23:53 +0900 |
commit | 3fde32a67e55ec1ece97f38c41443a342be655e1 (patch) | |
tree | 96010f71360608e357850b85fb35eb1b8315d2f5 /scene/animation/animation_player.cpp | |
parent | 5b341621e6cdcf0f3a37a432b7fef2fce1e1cf00 (diff) | |
download | redot-engine-3fde32a67e55ec1ece97f38c41443a342be655e1.tar.gz |
Fix Deterministic blending with Dominant doesn't have init value
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r-- | scene/animation/animation_player.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index 435776843c..0c24d79ad7 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -447,10 +447,10 @@ void AnimationPlayer::_play(const StringName &p_name, double p_custom_blend, flo } else { if (p_from_end && c.current.pos == 0) { // Animation reset but played backwards, set position to the end. - c.current.pos = c.current.from->animation->get_length(); + seek(c.current.from->animation->get_length(), true, true); } 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; + seek(0, true, true); } else if (playing) { return; } |