Browse Source

Merge pull request #80708 from garychia/anim_seek

Ensure methods skipped by `AnimationPlayer::seek` are not called
Rémi Verschelde 2 years ago
parent
commit
0511f9d9a7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scene/animation/animation_player.cpp

+ 1 - 1
scene/animation/animation_player.cpp

@@ -779,7 +779,7 @@ void AnimationPlayer::_animation_process_animation(AnimationData *p_anim, double
 				List<int> indices;
 				List<int> indices;
 
 
 				if (p_seeked) {
 				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) {
 					if (found_key >= 0) {
 						indices.push_back(found_key);
 						indices.push_back(found_key);
 					}
 					}