new effect system

This commit is contained in:
Rendo 2025-07-30 00:56:53 +05:00
commit a53160a1c1
11 changed files with 145 additions and 88 deletions

View file

@ -1,9 +1,14 @@
using Godot;
namespace Newlon;
public static class LON
{
public static float Pr(string path)
public static void ForceFinishTween(Tween tween)
{
return 0;
if (tween == null) return;
tween.Pause();
tween.CustomStep(Mathf.Inf);
}
}