public static Vector2 Lerp (Vector2 a, Vector2 b, float t);

Description

在向量 ab 之间按 t 进行线性插值。

参数 t 限制在范围 [0, 1] 内。

When t = 0 returns a.
When t = 1 return b.
When t = 0.5 returns the midpoint of a and b.

另请参阅:LerpUnclamped