build
The mr_bt project allows users to define behavior trees as JSON files. Each node in the behavior tree is a JSON dictionary object, for example:
Folder structure
When building a new project create a new folder with the name of your project in mr_bt/src/tree_jsons
.
Each behavior tree project must have a root JSON file named root.json
. This file will define the root node of your behavior tree and must be unique in your project folder. For example if you want to make a new project named my_new_bt_project
, your folder structure should look something like this:
Last updated