diff options
author | Chia-Hsiang Cheng <88014292+garychia@users.noreply.github.com> | 2023-08-17 17:35:54 +0800 |
---|---|---|
committer | Chia-Hsiang Cheng <88014292+garychia@users.noreply.github.com> | 2023-08-17 17:35:54 +0800 |
commit | 125ae78a89d4d2b8c3ea928b806a2213e64a0adb (patch) | |
tree | bf8153d520ee06595c384990a1685343eada2ba4 /scene/animation/animation_player.cpp | |
parent | a278c1b98a81738a35b96a933a6e6cf771f9ab2d (diff) | |
download | redot-engine-125ae78a89d4d2b8c3ea928b806a2213e64a0adb.tar.gz |
Ensure methods skipped by AnimationPlayer::seek are not called
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r-- | scene/animation/animation_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index 0eb832a2dd..9fa3f6871d 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -779,7 +779,7 @@ void AnimationPlayer::_animation_process_animation(AnimationData *p_anim, double List<int> indices; if (p_seeked) { - int found_key = a->track_find_key(i, p_time); + int found_key = a->track_find_key(i, p_time, Animation::FIND_MODE_EXACT); if (found_key >= 0) { indices.push_back(found_key); } |