mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-10 21:05:54 +00:00
27 lines
No EOL
560 B
C#
27 lines
No EOL
560 B
C#
using Godot;
|
|
using GTweens.Delegates;
|
|
using GTweens.Tweeners;
|
|
using GTweensGodot.Interpolators;
|
|
|
|
namespace GTweensGodot.Tweeners;
|
|
|
|
public sealed class GodotVector2Tweener : Tweener<Vector2>
|
|
{
|
|
public GodotVector2Tweener(
|
|
Getter getter,
|
|
Setter setter,
|
|
Getter to,
|
|
float duration,
|
|
ValidationDelegates.Validation validation
|
|
)
|
|
: base(
|
|
getter,
|
|
setter,
|
|
to,
|
|
duration,
|
|
GodotVector2Interpolator.Instance,
|
|
validation
|
|
)
|
|
{
|
|
}
|
|
} |