summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_tree.h
diff options
context:
space:
mode:
authorSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2024-07-15 08:44:20 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2024-11-12 04:40:15 +0900
commit0c1f970adb78cb0653a3789ee61df4ab14b94b96 (patch)
tree4ae61e9b695060944f7098b02e8b2046dbbbd4e2 /scene/animation/animation_tree.h
parente65a23762b36b564eb94672031f37fdadba72333 (diff)
downloadredot-engine-0c1f970adb78cb0653a3789ee61df4ab14b94b96.tar.gz
Add advance_on_start option to NodeAnimation
Diffstat (limited to 'scene/animation/animation_tree.h')
-rw-r--r--scene/animation/animation_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_tree.h b/scene/animation/animation_tree.h
index eb25a8db1b..5a2a822ff0 100644
--- a/scene/animation/animation_tree.h
+++ b/scene/animation/animation_tree.h
@@ -91,7 +91,7 @@ public:
if (Math::is_zero_approx(remain)) {
return 0;
}
- return length - position;
+ return remain;
}
};