Skip to content

Unit Reference LogicParams

S2NX7 edited this page Sep 30, 2025 · 8 revisions

Logic Params

Logic Params

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 are true.
  • Or : Returns true if any boolean input is true.
  • 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.
Clone this wiki locally