diff options
-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); } |