Kasper Mikiewicz
Kasper Mikiewicz
`selector` - `or` `sequence` - `and` `condition` - `if` `action` - `do` `useTree` - `useBehavior` as suggested in [HN comment](https://news.ycombinator.com/item?id=22833788) Selector, sequence is typical naming for behavior trees but might...
All current nodes should be in form of a plugin. Example: [`nodes.sequence()`](https://github.com/Idered/behavior-tree/blob/e2270ff9fb689e061f5356a9b33033aa8d33c6ba/packages/core/src/index.ts#L241) returns an object without function to interpret it. If we want pluggable nodes then it should contain interpretation...
Creating [TodoMVC](http://todomvc.com/) example will help spotting potential bugs. It will also help to determine good use cases for behavior trees - because you probably should not use it everywhere, right?
Without a suit of tests, this should not be used in production.
Currently DevTools is just a React component and it has some cons: - It's unusable in pure JS environment - You need to add it to your app tree -...