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

Descripción

Interpola linealmente entre los vectores a y b por t.

El parámetro t está sujeto al rango [0, 1].

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

See Also: LerpUnclamped.