UNPKG

owl-bt

Version:

owl-bt is editor for Behavior trees. It has been inspired by Unreal engine behavior trees in a way, that it supports special node items like decorators and services. This makes trees smaller and much more readable.

13 lines (10 loc) 256 B
#!/usr/bin/env node 'use strict'; const yargs = require('yargs'); process.env.NODE_ENV = process.env.NODE_ENV || 'production'; const argv = yargs .commandDir('cmds') .help('h').alias('h', 'help') .demandCommand() .strict(true) .argv;