arora 0.1.0

Opinionated Arora runtime: an engine pre-wired with the native behavior-tree control nodes and the Semio backend.
1
2
3
4
5
6
7
8
9
10
11
<root main_tree_to_execute="MainTree">
  <!-- A minimal tree using only built-in behavior-tree-nodes: a sequence of
       two nodes that always succeed. Run with:
         cargo run -p arora -- crates/arora/examples/hello_tree.groot.xml -->
  <BehaviorTree ID="MainTree">
    <Sequence name="11111111-1111-4111-8111-111111111111">
      <Succeed name="22222222-2222-4222-8222-222222222222" />
      <Succeed name="33333333-3333-4333-8333-333333333333" />
    </Sequence>
  </BehaviorTree>
</root>