mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-15 11:23:47 +00:00
Added GTWeen
This commit is contained in:
parent
457998788e
commit
2036e4e748
152 changed files with 5889 additions and 7 deletions
|
|
@ -0,0 +1,40 @@
|
|||
using System.Numerics;
|
||||
using GTweens.Easings;
|
||||
|
||||
namespace GTweens.Interpolators
|
||||
{
|
||||
public sealed class SystemVector4Interpolator : IInterpolator<Vector4>
|
||||
{
|
||||
public static readonly SystemVector4Interpolator Instance = new();
|
||||
|
||||
SystemVector4Interpolator()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Vector4 Evaluate(
|
||||
Vector4 initialValue,
|
||||
Vector4 finalValue,
|
||||
float time,
|
||||
EasingDelegate easingDelegate
|
||||
)
|
||||
{
|
||||
return new Vector4(
|
||||
easingDelegate(initialValue.X, finalValue.X, time),
|
||||
easingDelegate(initialValue.Y, finalValue.Y, time),
|
||||
easingDelegate(initialValue.Z, finalValue.Z, time),
|
||||
easingDelegate(initialValue.W, finalValue.W, time)
|
||||
);
|
||||
}
|
||||
|
||||
public Vector4 Subtract(Vector4 initialValue, Vector4 finalValue)
|
||||
{
|
||||
return finalValue - initialValue;
|
||||
}
|
||||
|
||||
public Vector4 Add(Vector4 initialValue, Vector4 finalValue)
|
||||
{
|
||||
return finalValue + initialValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue