format
typescript
Vector3.normalizedclass: Vector3
description
(Read Only) The normalized vector of the current vector.
parameter
| param_name | type | description |
|---|
reture
| type | description |
|---|---|
Vector3 | The normalized value of the vector. |
code example
typescript
let lhs = new Vector3(1,-2,-3);
Debug.Log("(1,-2,-3) normalized is",lhs.normalized);