Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

Vector4.Lerp

static function Lerp(from: Vector4, to: Vector4, t: float): Vector4;
static Vector4 Lerp(Vector4 from, Vector4 to, float t);
static def Lerp(from as Vector4, to as Vector4, t as float) as Vector4

Description

Linearly interpolates between two vectors.

Interpolates between from and to by amount t.

t is clamped between [0...1]. When t = 0 returns from. When t = 1 returns to. When t = 0.5 returns the average of from and to.