behavior tree:Behavior使用行为树管理React状态 源码
JavaScript / TypeScript实现。 :closed_book:以了解API。 注意:此软件尚处于早期开发阶段。还没准备好生产。 API可能会更改。 行为树工具包 :evergreen_tree: 框架不可知行为树实现 :atom_symbol: -Hooks和docs如何在React中使用BT 快速开始 npm install @btree/core import { nodes } from '@btree/core' const initialState = { isLoggedIn : false } const AuthBehavior = nodes . root ( 'Auth behavior' , ( ) => /* Selector runs child one by one until one of them succeeds */ nodes . selector ( [ /* Sequence
用户评论