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