Appearance
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. BothAandBmust have the same type, which should be eitherFloatorInt.
Outputs:
Result (Boolean): The resulting value, which istruewheneverAis less thanB, andfalseotherwise.
Example
