2022-11-01 20:31:22 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-11-15 14:40:07 +00:00
<class name= "BTState" inherits= "LimboState" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../../../doc/class.xsd" >
2022-11-01 20:31:22 +00:00
<brief_description >
2022-11-04 12:27:09 +00:00
A state node for [LimboHSM] that hosts a [BehaviorTree].
2022-11-01 20:31:22 +00:00
</brief_description>
<description >
2023-10-26 13:45:24 +00:00
BTState is a [LimboState] node that manages a [BehaviorTree] to provide behavior logic for the state. It instantiates and runs the [BehaviorTree] resource, dispatching a state machine event upon [code]SUCCESS[/code] or [code]FAILURE[/code]. Event names are customizable through [member success_event] and [member failure_event]. For further details on state machine events, see [method LimboState.dispatch].
2022-11-01 20:31:22 +00:00
</description>
<tutorials >
</tutorials>
2024-02-03 16:28:56 +00:00
<methods >
2024-08-03 11:14:31 +00:00
<method name= "get_bt_instance" qualifiers= "const" >
<return type= "BTInstance" />
2024-02-03 16:28:56 +00:00
<description >
2024-08-03 11:14:31 +00:00
Returns the behavior tree instance.
2024-02-03 16:28:56 +00:00
</description>
</method>
</methods>
2022-11-01 20:31:22 +00:00
<members >
<member name= "behavior_tree" type= "BehaviorTree" setter= "set_behavior_tree" getter= "get_behavior_tree" >
2023-10-26 13:45:24 +00:00
A [BehaviorTree] resource that defines state behavior.
2022-11-04 12:27:09 +00:00
</member>
2024-03-04 15:14:47 +00:00
<member name= "failure_event" type= "StringName" setter= "set_failure_event" getter= "get_failure_event" default= "&"failure"" >
2023-10-26 13:45:24 +00:00
HSM event that will be dispatched when the behavior tree results in [code]FAILURE[/code]. See [method LimboState.dispatch].
2022-11-04 12:27:09 +00:00
</member>
2024-03-04 15:14:47 +00:00
<member name= "success_event" type= "StringName" setter= "set_success_event" getter= "get_success_event" default= "&"success"" >
2023-10-26 13:45:24 +00:00
HSM event that will be dispatched when the behavior tree results in [code]SUCCESS[/code]. See [method LimboState.dispatch].
2022-11-01 20:31:22 +00:00
</member>
</members>
</class>