flow
(flow): The main input flow that triggers the MultiGate node.reset
(flow): An optional reset flow that, when triggered, resets the MultiGate to its initial state.loop
(boolean, default: false): When set to true, the MultiGate will continuously loop through its outputs.startIndex
(integer, default: 0): Specifies the initial output index when the node is first triggered.1
(flow): The first output flow.2
(flow): The second output flow.3
(flow): The third output flow.flow
input of the MultiGate node.reset
input if you want to be able to reset the MultiGate to its initial state.loop
input to true if you want the MultiGate to continuously loop through its outputs.startIndex
input to control which output the MultiGate should activate first (0-indexed).flow
input is triggered, the MultiGate will activate one of its outputs based on the current internal state. If loop
is true, it will keep cycling through the outputs on each subsequent trigger. The reset
input allows you to reset the internal state back to the startIndex
.
loop
set to true, the MultiGate will alternate between these three actions on each subsequent request.
reset
input to control the MultiGate’s behavior dynamically during the spell’s execution.startIndex
. An index out of bounds will cause an error.loop
is false and the MultiGate reaches the end of its outputs, subsequent triggers to the flow
input will have no effect until it is reset.