14 lines
No EOL
194 B
C#
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);
|
|
}
|
|
} |