Version: Unity 6.0 (6000.0)
LanguageEnglish
  • C#

Vector2.LerpUnclamped

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

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

Parameters

Parameter Description
a The first vector to interpolate between.
b The second vector to interpolate between.
t The amount to interpolate between.

Returns

Vector2 When t is equal to 0, returns a. When t is equal to 1, returns b. When t is equal to 0.5, returns the midpoint of a and b.

Description

Linearly interpolates between vectors a and b by t.

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

Additional resources: Lerp.