Node Properties
Use this setting to change the output node’s data type.
The following comparison functions are available:
Equality. Use the equality operator to check if two inputs are of the same value. The output is True if the inputs are of the same value. Otherwise, the output is False.
Less Than. The output is True if the first input is less than the second input. Otherwise, the output is False.
Less Than or Equal To. The output is True if the first input is less than or equal to the second input. Otherwise, the output is False.
Greater Than. The output is True if the first input is greater than the second input. Otherwise, the output is False.
Greater Than or Equal To. The output is True if the first input is greater than or equal to the second input. Otherwise, the output is False.
Not Equal To. The output is True if the two input values are not equal. Otherwise, the output if False. This function is, therefore, the reverse of the Equality operator ==.