newlon/scripts/Newlon.cs
2025-07-30 00:56:53 +05:00

14 lines
No EOL
194 B
C#

using Godot;
namespace Newlon;
public static class LON
{
public static void ForceFinishTween(Tween tween)
{
if (tween == null) return;
tween.Pause();
tween.CustomStep(Mathf.Inf);
}
}