Lerp
Example
Example of simple Lerp usage for animations.
Example
Advanced example of Lerp animation: A health bar that will smooth the health change over 0.5 seconds to reach new health value from the previous value.
Performs a linear interpolation from the start number to the end number.
This function provides a very efficient and easy way to smooth out movements.
See also math.ease for functions that allow to have non linear animations using linear interpolation.
Example of simple Lerp usage for animations.
Advanced example of Lerp animation: A health bar that will smooth the health change over 0.5 seconds to reach new health value from the previous value.