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

描述

在两个向量之间进行线性插值。

ab 之间按大小 t 进行插值。

参数 t 限制在 [0...1] 之间。

t = 0 时,返回 t。\ 当 t = 1 时,返回 t。\ 当 t = 0.5 时,返回 ab 的中点。

另请参阅:LerpUnclamped