Skip to content

Less Than

The Less than node is a comparison operator that will output a true value whenever the first value is less than 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 B, and false otherwise.

Example