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