Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Vector4.Lerp

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

Description

Linearly interpolates between two vectors.

Interpolates between a and b by amount t.

The parameter t is clamped between [0...1].

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

See Also: LerpUnclamped.

Did you find this page useful? Please give it a rating: