Legacy Documentation: Version 4.6.2
Language: English
  • C#
  • JS
  • Boo

Script language

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

Vector4.MoveTowards

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

Sumbission failed

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

Close

Cancel

public static function MoveTowards(current: Vector4, target: Vector4, maxDistanceDelta: float): Vector4;
public static Vector4 MoveTowards(Vector4 current, Vector4 target, float maxDistanceDelta);
public static def MoveTowards(current as Vector4, target as Vector4, maxDistanceDelta as float) as Vector4

Description

Moves a point current towards target.

This is essentially the same as Vector4.Lerp but instead the function will ensure that the speed never exceeds maxDistanceDelta. Negative values of maxDistanceDelta pushes the vector away from target.