Passing trees made with the online editor containing decorators outputs this:
I'm using python 2.7
Traceback (most recent call last): File "test.py", line 10, in <module> tree.load(data_tree)
File "/home/b3/core/behaviortree.py", line 35, in load
node = cls()
TypeError: __init__() missing 1 required positional argument: 'child'
The tree in question is this simple one:

It seems like the node's constructor is always being called without children even if it needs one.
Passing trees made with the online editor containing decorators outputs this:
I'm using python 2.7
The tree in question is this simple one:
It seems like the node's constructor is always being called without children even if it needs one.