Version: 2019.2
public static Vector2 LerpUnclamped (Vector2 a, Vector2 b, float t);

説明

ab by t ベクトルの間で線形補間します。

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

関連項目: Lerp.