a
(integer): The first integer value to compare. Default value is 0.b
(integer): The second integer value to compare. Default value is 0.result
(boolean): The result of the equality comparison. Returns true
if the two input integers are equal, and false
otherwise.a
input.b
input.result
output will emit true
if the two input integers are equal, and false
otherwise.a
and b
inputs of the Equal (Integer) node. The result
output is then connected to a Boolean Output node. Since both input values are 42, the result
will be true
.
a
and b
inputs are of type integer. Connecting other data types may lead to unexpected behavior.a
or b
inputs are left disconnected, the node will use the default value of 0 for that input. This may lead to unintended results. Always ensure both inputs are properly connected.