| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
BT Framework is a simple behavior tree framework that can be used to create game AI. It's written for Unity3d.
Create various actions and pre-conditions inheriting from BTAction and BTPrecondition.
Create a class inheriting from BTTree, and construct the behavior tree in Init function.
Drag the class to a GameObject.
It's this simple!
A simple example:
// A class inheriting from BTTree
protected override void Init () {
// Initialize base class
base.Init();
// Create root node
_root = new BTPrioritySelector();
// ---Construct the behavior tree---
// Escape when boss is close
DistanceClosePrecondition bossClose = new DistanceClosePrecondition("Boss");
_root.AddChild (new DoRun(bossClose));
// Fight when a goblin is close
DistanceClosePrecondition goblinClose = new DistanceClosePrecondition("Goblin");
_root.AddChild (new DoFight(goblinClose));
// Do nothing when boss & goblin not around
_root.AddChild (new Idle());
}where DistanceClosePrecondition are user defined precondition that inherits from BTPrecondition, and
DoRun, DoFight, Idle are user defined behaviors that inherit from BTAction.
Ludum Dare 48-hour game jam entry: [Swordsman] (http://ludumdare.com/compo/ludum-dare-30/?action=preview&uid=24851)
Code Demo: [BT Test Improved] (https://github.com/f15gdsy/BT-Test/tree/improved)
Code Demo: [BT Test Original] (https://github.com/f15gdsy/BT-Test/tree/master)
Platformer Demo: [Archer] (https://dl.dropboxusercontent.com/u/27907965/games/Archer/Build_0/Build_0.html)
| Back | FazBrowse Home | New Git URL |