-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference LogicParams
S2NX7 edited this page Sep 30, 2025
·
8 revisions

The LogicParams node performs a logical or comparison operation over multiple inputs.
The type of operation is determined by the Condition property (BranchingType
), which can be:
-
And : Returns
true
if all boolean inputs aretrue
. -
Or : Returns
true
if any boolean input istrue
. -
GreaterThan : Compares two numeric inputs, returns
true
if the first is greater. -
LessThan : Compares two numeric inputs, returns
true
if the first is less. - Equal : Compares two inputs for equality, with an option for numeric comparison.
Properties
- BranchingType : The type of logical or comparison operation performed.
- AllowEquals : When comparing numeric values, allows equality in LessThan or GreaterThan checks.
- Numeric : When enabled for Equal comparisons, treats values as numeric and allows approximate matches.
Output Ports
- output : Returns the result of the operation based on the selected BranchingType and input arguments.