Skip to content

Logic Branch

Henry de Jongh edited this page Feb 26, 2023 · 2 revisions
Description Icon
A reactive logic component that can branch between two outputs.

Parameters

Name Description
Initial Value The initial boolean value stored inside of the branch.

Inputs

Name Description Parameter
SetValue Set the boolean value without performing the test. value (boolean) The boolean value to be stored for future tests.
SetValueTest Set the boolean value and perform the test. This invokes either the True or False output accordingly. value (boolean) The boolean value to be stored and tested.
Toggle Toggle the boolean value between true and false without performing the test. None
ToggleTest Toggle the boolean value between true and false and perform the test. This invokes either the True or False output accordingly. None
Test Performs the test invoking either the True or False output accordingly. None

Outputs

Name Description Parameter
True Invoked by the test when the boolean value is true. parameter (string) The parameter to be passed to the input.
False Invoked by the test when the boolean value is false. parameter (string) The parameter to be passed to the input.

Remarks

The outputs pass through the input parameter when not overridden.

Clone this wiki locally