Linear Interpolation (LERP) returns a value between two others at a point of linear scale.

The formula for the LERP output is: From + (To - From) × Amount

Input:

  • From: The value to transition from.
  • To: The value to transition to.
  • Amount: How far to transition.

Output:

  • Rotation: The value between the From and To input, at a linear scale (defined by Amount input).

Example