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.

Vector2.magnitude

var magnitude: float;
float magnitude;
magnitude as float

Description

Returns the length of this vector (Read Only).

The length of the vector is square root of (x*x+y*y).

If you only need to compare magnitudes of some vectors, you can compare squared magnitudes of them using sqrMagnitude (computing squared magnitudes is faster).

See Also: sqrMagnitude.