Unit Reference LogicParams - RealityStop/Bolt.Addons.Community GitHub Wiki
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
trueif all boolean inputs aretrue. -
Or : Returns
trueif any boolean input istrue. -
GreaterThan : Compares two numeric inputs, returns
trueif the first is greater. -
LessThan : Compares two numeric inputs, returns
trueif 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.