Merge pull request #12101 from RandomShaper/fix-seek-to-end

Fix animation not stopping after seeking to the end
This commit is contained in:
Rémi Verschelde 2017-10-15 20:16:47 +02:00 committed by GitHub
commit c016e13c89
1 changed files with 2 additions and 2 deletions

View File

@ -529,12 +529,12 @@ void AnimationPlayer::_animation_process_data(PlaybackData &cd, float p_delta, f
if (&cd == &playback.current) {
if (!backwards && cd.pos < len && next_pos == len /*&& playback.blend.empty()*/) {
if (!backwards && cd.pos <= len && next_pos == len /*&& playback.blend.empty()*/) {
//playback finished
end_notify = true;
}
if (backwards && cd.pos > 0 && next_pos == 0 /*&& playback.blend.empty()*/) {
if (backwards && cd.pos >= 0 && next_pos == 0 /*&& playback.blend.empty()*/) {
//playback finished
end_notify = true;
}