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.normalized

var normalized: Vector2;
Vector2 normalized;
normalized as Vector2

Description

Returns this vector with a magnitude of 1 (Read Only).

When normalized, a vector keeps the same direction but its length is 1.0.

Note that the current vector is unchanged and a new normalized vector is returned. If you want to normalize the current vector, use Normalize function.

If the vector is too small to be normalized a zero vector will be returned.

See Also: Normalize function.