format
typescript
Vector3.minChannelclass: Vector3
description
(Read Only) The smallest component value in the vector.
parameter
| param_name | type | description |
|---|
reture
| type | description |
|---|---|
number | The minimum value. |
code example
typescript
let lhs = new Vector3(1,-2,-3);
Debug.Log("(1,-2,-3) minChannel is",lhs.minChannel);