Skip to content

Xor

The Xor node is a node that applies the Xor, or exclusive Or, logical operation between two boolean inputs. If only one of the inputs is true it will output a true value. Otherwise, it will output false.

Inputs and Outputs

Inputs:

  • Condition A (Boolean): The first condition.
  • Condition B (Boolean): The second condition.

Outputs:

  • Result (Boolean): The resulting value, which is true whenever at only one of the conditions are true and false otherwise.