-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.xml
More file actions
49 lines (49 loc) · 2.18 KB
/
test.xml
File metadata and controls
49 lines (49 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<BehaviorTree.BTStartNode NodeName="origin">
<BehaviorTree.SequenceNode NodeName="seq">
<SimpleLeaf NodeName="first" />
<SimpleLeaf NodeName="second" />
<SimpleLeaf NodeName="third" />
<SimpleLeaf NodeName="fourth" />
</BehaviorTree.SequenceNode>
<BehaviorTree.RandomSequence NodeName="rSeq">
<SimpleLeaf NodeName="first" />
<SimpleLeaf NodeName="second" />
<SimpleLeaf NodeName="third" />
<SimpleLeaf NodeName="fourth" />
</BehaviorTree.RandomSequence>
<BehaviorTree.Selector NodeName="sel">
<SimpleLeaf NodeName="first" />
<SimpleLeaf NodeName="second" />
<SimpleLeaf NodeName="third" />
<SimpleLeaf NodeName="fourth" />
</BehaviorTree.Selector>
<BehaviorTree.RandomSelector NodeName="rSel">
<SimpleLeaf NodeName="first" />
<SimpleLeaf NodeName="second" />
<SimpleLeaf NodeName="third" />
<SimpleLeaf NodeName="fourth" />
</BehaviorTree.RandomSelector>
<BehaviorTree.SequenceNode NodeName="seq2">
<BehaviorTree.FailerDecorator NodeName="failer">
<BehaviorTreeTests.SucceedNode NodeName="succeed" />
</BehaviorTree.FailerDecorator>
</BehaviorTree.SequenceNode>
<BehaviorTree.Selector NodeName="sel2">
<BehaviorTree.SucceederDecorator NodeName="succeeder">
<FailNode NodeName="fail" />
</BehaviorTree.SucceederDecorator>
</BehaviorTree.Selector>
<BehaviorTree.FrameInterruptDecorator Name="frameInter" frameOut="10">
<FrameDecoratorTester Name="frameTest" framesToCount="5" />
</BehaviorTree.FrameInterruptDecorator>
<BehaviorTree.FrameInterruptDecorator Name="frameInter2" frameOut="10">
<FrameDecoratorTester Name="frameTest2" framesToCount="15" />
</BehaviorTree.FrameInterruptDecorator>
<BehaviorTree.TimedDecorator Name="timeInter" timeout="5">
<TimeDecoratorTester Name="timeTest" time="3" />
</BehaviorTree.TimedDecorator>
<BehaviorTree.TimedDecorator Name="timeInter2" timeout="5">
<TimeDecoratorTester Name="timeTest2" time="7" />
</BehaviorTree.TimedDecorator>
</BehaviorTree.BTStartNode>