LERP(A, B, Alpha)
Linearly interpolates between A and B based on Alpha (100% of A when Alpha=0 and 100% of B when Alpha=1)
Float LERP(Float A, Float B, Float Alpha)
A - Float value. If it is not of type float, it is implicitly converted to type float.
B - Float value. If it is not of type float, it is implicitly converted to type float.
Alpha - Float value. If it is not of type float, it is implicitly converted to type float.
Linearly interpolates between A and B based on Alpha (100% of A when Alpha=0 and 100% of B when Alpha=1)
> PRINT LERP(10, 20, 0.5)
15.000000