mirror of
https://github.com/godotengine/godot.git
synced 2024-11-13 07:32:55 +00:00
fixed Pingpong animation get snaging on the edge in AnimationTree
This commit is contained in:
parent
caa9ec8aca
commit
2201c281dd
@ -104,11 +104,11 @@ double AnimationNodeAnimation::process(double p_time, bool p_seek, bool p_seek_r
|
||||
if (anim->get_loop_mode() == Animation::LOOP_PINGPONG) {
|
||||
if (!Math::is_zero_approx(anim_size)) {
|
||||
if ((int)Math::floor(abs(time - prev_time) / anim_size) % 2 == 0) {
|
||||
if (prev_time > 0 && time <= 0) {
|
||||
if (prev_time >= 0 && time < 0) {
|
||||
backward = !backward;
|
||||
pingponged = -1;
|
||||
}
|
||||
if (prev_time < anim_size && time >= anim_size) {
|
||||
if (prev_time <= anim_size && time > anim_size) {
|
||||
backward = !backward;
|
||||
pingponged = 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user