mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-12 22:15:54 +00:00
27 lines
638 B
C#
27 lines
638 B
C#
|
|
using System.Numerics;
|
|||
|
|
using GTweens.Delegates;
|
|||
|
|
using GTweens.Interpolators;
|
|||
|
|
|
|||
|
|
namespace GTweens.Tweeners
|
|||
|
|
{
|
|||
|
|
public sealed class SystemVector4Tweener : Tweener<Vector4>
|
|||
|
|
{
|
|||
|
|
public SystemVector4Tweener(
|
|||
|
|
Getter currValueGetter,
|
|||
|
|
Setter setter,
|
|||
|
|
Getter to,
|
|||
|
|
float duration,
|
|||
|
|
ValidationDelegates.Validation validation
|
|||
|
|
)
|
|||
|
|
: base(
|
|||
|
|
currValueGetter,
|
|||
|
|
setter,
|
|||
|
|
to,
|
|||
|
|
duration,
|
|||
|
|
SystemVector4Interpolator.Instance,
|
|||
|
|
validation
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|