Method Interpolate
Interpolate(T, T, float)
Method to override and adapted to the generic type. This assumes interpolation for that value will be clamped.
Declaration
protected abstract T Interpolate(T start, T end, float time)
Parameters
Type | Name | Description |
---|---|---|
T | start | The start value (min) |
T | end | The end value (max) |
float | time | The time value used to interpolate between start and end values (pos) |
Returns
Type | Description |
---|---|
T | The interpolated value |