SequenceNode
Composite Node A sequence node will run its children until 1 fails. If a child fails, the sequence will report failure. If all the nodes run and succeed, the sequence will report success.
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun IParentNode.conditional(observerAbort: ObserverAbort? = null, condition: () -> Boolean, init: ConditionalNode.() -> Unit): ConditionalNode
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun IParentNode.repeatUntil(condition: () -> Boolean, init: RepeatUntilNode.() -> Unit): RepeatUntilNode
fun IParentNode.repeatUntil(status: BehaviorTreeStatus, init: RepeatUntilNode.() -> Unit): RepeatUntilNode
fun IParentNode.repeatUntil(condition: () -> Boolean, status: BehaviorTreeStatus, init: RepeatUntilNode.() -> Unit): RepeatUntilNode
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard