Skip to content

upsidedownio/bhivejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors