Skip to content

Less Than or Equal

The Less than or equal node is a comparison operator that will output a true value whenever the first value is less than or equal to the second value, and a false value otherwise.

Allowable input types are Float and Int. Other types such as Vectors, Colors, and Matrices are allowed but will be cast to Float by using only the first component and discarding the others.

Inputs and Outputs

Inputs:

  • A: The first value.
  • B: The second value. Both A and B must have the same type, which should be either Float or Int.

Outputs:

  • Result (Boolean): The resulting value, which is true whenever A is less than or equal to B, and false otherwise.

Example