Compare commits
3 Commits
7a90fdb113
...
8fa609ef9e
Author | SHA1 | Date |
---|---|---|
Serhii Snitsaruk | 8fa609ef9e | |
Serhii Snitsaruk | c6851259e8 | |
Serhii Snitsaruk | 5a60ad9308 |
|
@ -23,6 +23,8 @@ BTSubtree instantiates a :ref:`BehaviorTree<class_BehaviorTree>` and includes it
|
||||||
|
|
||||||
Returns the status of the subtree's execution.
|
Returns the status of the subtree's execution.
|
||||||
|
|
||||||
|
Subtree blackboard variables can be mapped to the main tree blackboard plan variables. Check out mapping section in the inspector.
|
||||||
|
|
||||||
Note: BTSubTree is designed as a simpler loader, and does not support updating :ref:`subtree<class_BTSubtree_property_subtree>` at runtime. A custom subtree decorator is better suited and `somewhat trivial <https://github.com/limbonaut/limboai/issues/94#issuecomment-2068833610>`__ to implement.
|
Note: BTSubTree is designed as a simpler loader, and does not support updating :ref:`subtree<class_BTSubtree_property_subtree>` at runtime. A custom subtree decorator is better suited and `somewhat trivial <https://github.com/limbonaut/limboai/issues/94#issuecomment-2068833610>`__ to implement.
|
||||||
|
|
||||||
.. rst-class:: classref-reftable-group
|
.. rst-class:: classref-reftable-group
|
||||||
|
|
|
@ -93,3 +93,10 @@ Creating your own behavior trees
|
||||||
:glob:
|
:glob:
|
||||||
|
|
||||||
classes/class_*
|
classes/class_*
|
||||||
|
|
||||||
|
Debugging behavior trees
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
In Godot Engine, follow to "Bottom Panel > Debugger > LimboAI" tab. With the LimboAI debugger,
|
||||||
|
you can inspect any currently active behavior tree within the running project. The debugger can be detached
|
||||||
|
from the main editor window, which can be particularly useful if you have a HiDPI or a secondary display.
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
<description>
|
<description>
|
||||||
BTSubtree instantiates a [BehaviorTree] and includes its root task as a child during initialization, while also creating a new [Blackboard] scope.
|
BTSubtree instantiates a [BehaviorTree] and includes its root task as a child during initialization, while also creating a new [Blackboard] scope.
|
||||||
Returns the status of the subtree's execution.
|
Returns the status of the subtree's execution.
|
||||||
|
Subtree blackboard variables can be mapped to the main tree blackboard plan variables. Check out mapping section in the inspector.
|
||||||
Note: BTSubTree is designed as a simpler loader, and does not support updating [member subtree] at runtime. A custom subtree decorator is better suited and [url=https://github.com/limbonaut/limboai/issues/94#issuecomment-2068833610]somewhat trivial[/url] to implement.
|
Note: BTSubTree is designed as a simpler loader, and does not support updating [member subtree] at runtime. A custom subtree decorator is better suited and [url=https://github.com/limbonaut/limboai/issues/94#issuecomment-2068833610]somewhat trivial[/url] to implement.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
major = 1
|
major = 1
|
||||||
minor = 1
|
minor = 1
|
||||||
patch = 0
|
patch = 0
|
||||||
status = "rc"
|
status = ""
|
||||||
doc_branch = "latest"
|
doc_branch = "v1.1.0"
|
||||||
|
|
||||||
# Code that generates version header
|
# Code that generates version header
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue