Skip to content

And

The And node is a node that applies the AND logical operation between two boolean inputs. If both inputs are 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 both conditions are true and false otherwise.