中文
Appearance
Mathf.Lerp(left, right, t)
Mathf
通过t在left和right之间进行线性插值。
number
//通过t在q1和q2之间进行线性插值 let lerp = Mathf.Lerp(1,2,0.5) //lerp=1.5