Merge pull request #85569 from TokageItLab/fix-seek-diecrete
Fix AnimationPlayer seeking for Discrete keys
This commit is contained in:
commit
b8ba602e8c
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ void AnimationPlayer::_process_playback_data(PlaybackData &cd, double p_delta, f
|
|||
pi.delta = delta;
|
||||
pi.seeked = p_seeked;
|
||||
}
|
||||
pi.is_external_seeking = false;
|
||||
pi.is_external_seeking = true; // AnimationPlayer doesn't have internal seeking.
|
||||
pi.looped_flag = looped_flag;
|
||||
pi.weight = p_blend;
|
||||
make_animation_instance(cd.from->name, pi);
|
||||
|
|
Loading…
Reference in a new issue