Skip to content

Rules and Operators

Pro Behavior

Rules and operators determine whether an action is allowed to execute.

OperatorMeaning
ANDAll connected conditions must be true.
ORAt least one connected condition must be true.
XORExactly one connected condition must be true.
NegateInverts the operator result.

Behaviors are evaluated from top to bottom. Expressions and operators above an action apply to that action. If multiple actions follow each other without new expressions or operators between them, they use the same execution conditions as the previous action.

Operators are required to execute actions. Operator inputs are supplied by expressions.

PatternEffect
Expression above operatorSupplies data to the operator.
Operator above actionGates the action.
Multiple operatorsCombines rule results according to their boolean logic.
Negated operatorInverts the final boolean result.

Behavior Library assets include debug mode in the toolbar. Use it to log events, inspect references, and verify execution order when actions run unexpectedly.