summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/animation/animation_tree.h')
-rw-r--r--scene/animation/animation_tree.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/animation/animation_tree.h b/scene/animation/animation_tree.h
index 62a01b758f..6698427233 100644
--- a/scene/animation/animation_tree.h
+++ b/scene/animation/animation_tree.h
@@ -87,6 +87,10 @@ public:
if (p_break_loop && is_just_looped) {
return 0;
}
+ double remain = length - position;
+ if (Math::is_zero_approx(remain)) {
+ return 0;
+ }
return length - position;
}
};