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.

16 lines (11 loc) 302 B
const path = require('path'), serverRunner = require('../serverRunner'); function handler(argv) { const treePath = path.resolve(argv.path); serverRunner.openTree(treePath); } module.exports = { command: ['open <path>', 'o'], describe: 'open a tree file', handler: handler }