1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Add advance_on_start option to NodeAnimation

This commit is contained in:
Silc Lizard (Tokage) Renew
2024-07-15 08:44:20 +09:00
parent e65a23762b
commit 0c1f970adb
5 changed files with 35 additions and 4 deletions

View File

@@ -91,7 +91,7 @@ public:
if (Math::is_zero_approx(remain)) {
return 0;
}
return length - position;
return remain;
}
};