bhive
v0.0.7
Published
Behavior Tree for Javascript
Downloads
96
Maintainers
Readme
PRE-Released
This project is currently very unstable. even master branch's history may change
BHive
Javascript implementation of BehaviorTree
How to Use
Installation
npm install bhivejs --save
Usage - conventional method
const {AsyncTask, Sequence, Priority, Repeater} = require('bhivejs');
const SearchEnemy = new AsyncTask({
title: 'SearchEnemy',
run: async function(){
// Searching Enemy
}
})
const SearchEnemy = new AsyncTask({
title: 'SearchEnemy',
run: async function(){
// Searching Enemy
}
})
Usage - definitional method
TBD
Build Document
You can build an API document and read it locally.
npm install
npm run doc
Specs
TBD
License
MIT License,
See LICENSE
file for details