-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathTreeTestSample.cs
70 lines (62 loc) · 2.54 KB
/
TreeTestSample.cs
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using CleverCrow.Fluid.BTs.Tasks;
using CleverCrow.Fluid.BTs.Trees;
using UnityEngine;
namespace CleverCrow.Fluid.BTs.Samples {
/// <summary>
/// Example script to test out BehaviorTrees, not actually compiled into the released package
/// </summary>
public class TreeTestSample : MonoBehaviour {
[SerializeField]
private BehaviorTree _treeA;
[SerializeField]
private BehaviorTree _treeB;
[SerializeField]
private BehaviorTree _treeC;
[SerializeField]
private bool _condition = false;
private void Awake () {
_treeA = new BehaviorTreeBuilder(gameObject)
.Sequence()
.Condition("Custom Condition", () => true)
.Do("Custom Action A", () => TaskStatus.Success)
.Selector()
.Sequence("Nested Sequence")
.Condition("Custom Condition", () => _condition)
.Do("Custom Action", () => TaskStatus.Success)
.End()
.Sequence("Nested Sequence")
.Do("Custom Action", () => TaskStatus.Success)
.Sequence("Nested Sequence")
.Condition("Custom Condition", () => true)
.Do("Custom Action", () => TaskStatus.Success)
.End()
.End()
.Do("Custom Action", () => TaskStatus.Success)
.Condition("Custom Condition", () => true)
.End()
.Do("Custom Action B", () => TaskStatus.Success)
.End()
.Build();
_treeB = new BehaviorTreeBuilder(gameObject)
.Name("Basic")
.Sequence()
.Condition("Custom Condition", () => _condition)
.Do("Custom Action A", () => TaskStatus.Success)
.End()
.Build();
_treeC = new BehaviorTreeBuilder(gameObject)
.Name("Basic")
.Sequence()
.Condition("Custom Condition", () => _condition)
.Do("Continue", () => _condition ? TaskStatus.Continue : TaskStatus.Success)
.End()
.Build();
}
private void Update () {
// Update our tree every frame
_treeA.Tick();
_treeB.Tick();
_treeC.Tick();
}
}
}