Skip to content

format

typescript
Vector3.normalized

class: Vector3

description

(Read Only) The normalized vector of the current vector.

parameter

param_nametypedescription

reture

typedescription
Vector3The normalized value of the vector.

code example

typescript
let lhs = new Vector3(1,-2,-3);
Debug.Log("(1,-2,-3) normalized is",lhs.normalized);