flow
(required): The main flow input that the Gate will control.open
: A flow signal to open the Gate and allow the main flow to pass through.close
: A flow signal to close the Gate and block the main flow.toggle
: A flow signal to toggle the Gate between open and closed states.startClosed
(boolean, default: false): If true, the Gate will start in the closed state. Otherwise, it starts open.flow
: The controlled flow output. Emits the main flow
input when the Gate is open, and blocks it when closed.flow
input.open
, close
, and/or toggle
inputs to control the Gate’s state.startClosed
option if you want the Gate to initially block the flow.flow
output to the next node(s) in your spell.open
input, it will allow the main flow
to pass through to the output. A signal on close
will block the flow. The toggle
input switches the Gate between open and closed states each time it receives a signal.
flow
input. The Condition node (e.g. a Button or Delay node) is connected to the Gate’s toggle
input.
toggle
input instead of separate open
and close
where appropriate to simplify the spell graph.startClosed
when you need the Gate to block the initial flow.