├── .DS_Store ├── .gitignore ├── README.md ├── Src ├── .DS_Store ├── Base │ ├── .DS_Store │ ├── Blackboard.cs │ ├── NodeState.cs │ ├── Tick.cs │ └── Utilities.cs ├── Node │ ├── BaseNode.cs │ ├── Composite │ │ ├── Priority.cs │ │ ├── Sequence.cs │ │ └── _Composite.cs │ ├── Decorator │ │ ├── Inverter.cs │ │ └── _Decorator.cs │ └── Leaf │ │ ├── Action.cs │ │ ├── Condition.cs │ │ └── _Leaf.cs └── Tree │ ├── .DS_Store │ └── BehaviorTree.cs └── Test ├── .DS_Store └── TTBTTest.cs /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.meta 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/README.md -------------------------------------------------------------------------------- /Src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/.DS_Store -------------------------------------------------------------------------------- /Src/Base/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Base/.DS_Store -------------------------------------------------------------------------------- /Src/Base/Blackboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Base/Blackboard.cs -------------------------------------------------------------------------------- /Src/Base/NodeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Base/NodeState.cs -------------------------------------------------------------------------------- /Src/Base/Tick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Base/Tick.cs -------------------------------------------------------------------------------- /Src/Base/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Base/Utilities.cs -------------------------------------------------------------------------------- /Src/Node/BaseNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/BaseNode.cs -------------------------------------------------------------------------------- /Src/Node/Composite/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Composite/Priority.cs -------------------------------------------------------------------------------- /Src/Node/Composite/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Composite/Sequence.cs -------------------------------------------------------------------------------- /Src/Node/Composite/_Composite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Composite/_Composite.cs -------------------------------------------------------------------------------- /Src/Node/Decorator/Inverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Decorator/Inverter.cs -------------------------------------------------------------------------------- /Src/Node/Decorator/_Decorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Decorator/_Decorator.cs -------------------------------------------------------------------------------- /Src/Node/Leaf/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Leaf/Action.cs -------------------------------------------------------------------------------- /Src/Node/Leaf/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Leaf/Condition.cs -------------------------------------------------------------------------------- /Src/Node/Leaf/_Leaf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Node/Leaf/_Leaf.cs -------------------------------------------------------------------------------- /Src/Tree/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Tree/.DS_Store -------------------------------------------------------------------------------- /Src/Tree/BehaviorTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Src/Tree/BehaviorTree.cs -------------------------------------------------------------------------------- /Test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Test/.DS_Store -------------------------------------------------------------------------------- /Test/TTBTTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/TTBT-Framework/HEAD/Test/TTBTTest.cs --------------------------------------------------------------------------------