2024-02-03 16:28:56 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
<class name= "BehaviorTreeData" inherits= "RefCounted" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../../../doc/class.xsd" >
<brief_description >
2024-02-10 11:29:04 +00:00
Represents current state of a [BehaviorTree] instance.
2024-02-03 16:28:56 +00:00
</brief_description>
<description >
2024-02-10 11:29:04 +00:00
This class is used by the LimboAI debugger for the serialization and deserialization of [BehaviorTree] instance data.
Additionally, it can be used with [BehaviorTreeView] to visualize the current state of a [BehaviorTree] instance. It is meant to be utilized in custom in-game tools.
2024-02-03 16:28:56 +00:00
</description>
<tutorials >
</tutorials>
<methods >
2024-08-03 11:14:31 +00:00
<method name= "create_from_bt_instance" qualifiers= "static" >
2024-02-03 16:28:56 +00:00
<return type= "BehaviorTreeData" />
2024-08-03 11:14:31 +00:00
<param index= "0" name= "bt_instance" type= "BTInstance" />
2024-02-03 16:28:56 +00:00
<description >
2024-08-03 11:14:31 +00:00
Returns current state of the [param bt_instance] encoded as a [BehaviorTreeData], suitable for use with [BehaviorTreeView].
Behavior tree instance can be acquired with [method BTPlayer.get_bt_instance].
2024-02-03 16:28:56 +00:00
</description>
</method>
</methods>
</class>