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 >
<method name= "create_from_tree_instance" qualifiers= "static" >
<return type= "BehaviorTreeData" />
2024-03-04 20:36:16 +00:00
<param index= "0" name= "tree_instance" type= "BTTask" />
2024-02-03 16:28:56 +00:00
<description >
2024-03-04 20:36:16 +00:00
Returns current state of the [param tree_instance] encoded as a [BehaviorTreeData], suitable for use with [BehaviorTreeView].
2024-02-10 11:29:04 +00:00
Behavior tree instance can be acquired with [method BTPlayer.get_tree_instance].
2024-02-03 16:28:56 +00:00
</description>
</method>
</methods>
</class>