LerpAngles
Linearly interpolates between two angles in the direction of minimum turn.
Syntax
C++
Python
def LerpAngles( inAngle0: float, inAngle1: float, inAngleRange: AngleRange, inLambda: float, /, *, inRotationDirection: RotationDirection | None = None, inInverse: bool = False ) -> outAngle: float
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inAngle0 | float | ||
![]() |
inAngle1 | float | ||
![]() |
inRotationDirection | RotationDirection | None | None | Clockwise, counter-clockwise or auto |
![]() |
inAngleRange | AngleRange | ||
![]() |
inLambda | float | Interpolation between the input angles where 0.0 value is equal to inAngle0 and 1.0 to inAngle1 | |
![]() |
inInverse | bool | False | |
![]() |
outAngle | float |


