Parallel Selector
Executes child nodes at the same time. Execution ends when any child node returns success
.
Behavior based on child node results
Results | Behavior |
---|---|
Success | Finishes execution and the Parallel Selector itself also returns success . |
Failure | Wait for other child nodes to finish executing. If all child nodes have finished executing, Parallel Selector itself will also return failure . |
Properties
Property name | Type | Description |
---|---|---|
Children | OutputBehaviorTreePort |
Executes the connected child nodes and receives the execution results. You can connect multiple child nodes. Child nodes start executing from top to bottom. |