mirror of
https://github.com/tonytins/citylimits
synced 2025-06-26 17:54:43 -04:00
Behavior Tree addon
This commit is contained in:
parent
5de5a0c315
commit
5fa863114a
50 changed files with 1762 additions and 3 deletions
8
addons/beehave/nodes/composites/composite.gd
Normal file
8
addons/beehave/nodes/composites/composite.gd
Normal file
|
@ -0,0 +1,8 @@
|
|||
extends BeehaveNode
|
||||
|
||||
class_name Composite, "../../icons/category_composite.svg"
|
||||
|
||||
|
||||
func _ready():
|
||||
if self.get_child_count() < 1:
|
||||
push_error("BehaviorTree Error: Composite %s should have at least one child (NodePath: %s)" % [self.name, self.get_path()])
|
Loading…
Add table
Add a link
Reference in a new issue