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