理解Mathf.Lerp
Lerp是一种线性插值运算。
float result = Mathf.Lerp(float a , float b , float t);
result = ( b - a ) * t;
比如:float a = Mathf.Lerp(0, 10, 0.1f);
a = ( 10 - 0 ) * 0.1 =1。
Lerp是一种线性插值运算。
float result = Mathf.Lerp(float a , float b , float t);
result = ( b - a ) * t;
比如:float a = Mathf.Lerp(0, 10, 0.1f);
a = ( 10 - 0 ) * 0.1 =1。