defining_nodes.md
Working with Leaf Nodes in Tree JSON
{
"name":"node name",
"type": "MyBtNode",
...
}class MyBtNode:
def __init__(self, arg1: str, arg2: int, arg3: float):
...{
"name":"node name",
"type": "MyBtNode",
"arg1": "hello world",
"arg2": 4,
"arg3": 10.8
}Working with Parent Nodes in Tree JSON
Last updated
Was this helpful?
