![]() |
FCV Engine 0.1
A tool and framework for tutorials in game development
|
A utility class to perform linear interpolation (lerping) between an array of Vector3 points. More...
Static Public Member Functions | |
static Vector3 | LerpPoints (Vector3[] points, float t) |
Returns a lerped position between an array of Vector3 points using a value between 0 and 1. | |
A utility class to perform linear interpolation (lerping) between an array of Vector3 points.
Definition at line 8 of file PointLerp.cs.
|
static |
Returns a lerped position between an array of Vector3 points using a value between 0 and 1.
points | An array of Vector3 points to interpolate between. |
t | A float value between 0 and 1 representing the interpolation factor. |
Definition at line 16 of file PointLerp.cs.