Method SliderLerpUnclamped
SliderLerpUnclamped(int, int, float)
Method to implement which returns a value based on the linear interpolation of a given interpolant between a specific range.
Usually you can use directly LerpUnclamped(float, float, float) for floating point value types.
Declaration
protected override Vector2Int SliderLerpUnclamped(int a, int b, float interpolant)
Parameters
| Type | Name | Description |
|---|---|---|
| int | a | The lowest value in the range. |
| int | b | The highest value in the range. |
| float | interpolant | The normalized value to process. |
Returns
| Type | Description |
|---|---|
| Vector2Int |