SelectorNode
Composite Node A selector node will run its children until 1 succeeds. If a child succeeds, the selector will report success. If all the children run and fail, the selector will report failure.
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