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.

15 lines (12 loc) 256 B
'use strict'; const rc = require('rc'); const rcCfg = rc('owlbt', { port : 8955 }); // Production specific configuration // ================================= module.exports = { // Server port port: process.env.PORT || rcCfg.port, };