Flow
flow/gate
Gate
Only allows execution to pass through when a boolean condition is true. Acts as a one-way branch with no false path.
Note: Equivalent to a Branch node where only the true path is connected.
Inputs
| Name | Type | Optional | Description |
|---|---|---|---|
exec |
exec | Incoming execution. | |
condition |
boolean | When true, execution passes through. |
Outputs
| Name | Type | Description |
|---|---|---|
exec |
exec | Execution continues only if condition is true. |