new effect system

This commit is contained in:
Rendo 2025-07-30 00:56:53 +05:00
commit 22b02c4590
11 changed files with 146 additions and 89 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);
}
}