Skip to content

format

typescript
Vector3.minChannel

class: Vector3

description

(Read Only) The smallest component value in the vector.

parameter

param_nametypedescription

reture

typedescription
numberThe minimum value.

code example

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