moveTowards(current: number, target: number, maxDelta: number): number
Moves a value current towards target.
This is essentially the same as Mathf.Lerp but instead the export function will ensure that the speed never exceeds maxDelta.
Negative values of maxDelta pushes the value away from target.
Moves a value current towards target.
This is essentially the same as Mathf.Lerp but instead the export function will ensure that the speed never exceeds maxDelta. Negative values of maxDelta pushes the value away from target.
Returns
resulting value