a
(float, default: 0): The first floating-point number to compare.b
(float, default: 0): The second floating-point number to compare.result
(boolean): The result of the equality comparison. Returns true
if a
is equal to b
, and false
otherwise.a
input.b
input.result
output will emit true
if the two input numbers are equal, and false
otherwise.input/number
nodes provide the floating-point numbers to compare. The Equal (Float) node compares these numbers and passes the boolean result to an output/boolean
node.
false
, double-check that the input values are the expected floating-point numbers and that they are truly equal. Slight variations in the decimal places can cause the equality check to fail.