behavior3行为树
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

52 řádky
1.4 KiB

  1. 中文
  2. =====
  3. Behavior3的erlang支持库
  4. 快速开始
  5. ----
  6. 添加如下内容到**rebar.config**
  7. {deps, [
  8. ...
  9. {behavior3erl, "1.0.0"}
  10. ]}.
  11. 编译
  12. ----
  13. $ rebar3 compile
  14. 使用
  15. ----
  16. {TitleMaps, TreeMaps, TreeNodeMaps} = eBhv3:load_tree_file("example.json"),
  17. {ok, RootID} = eBhv3:init_btree_by_title(<<"example_ai"/utf8>>, TitleMaps, TreeMaps, TreeNodeMaps),
  18. {_BTStatus, _BTState1} = eBhv3:execute(RootID, BTState = #{}).
  19. 更多
  20. ----
  21. [behavior3editor](https://github.com/behavior3/behavior3editor)
  22. [behavior3go](https://github.com/magicsea/behavior3go)
  23. #### Behavior3使用系列文章:
  24. [(一)行为树应用之行为树简介](http://note.youdao.com/s/77bGugj9)
  25. [(二)行为树应用之组合节点](http://note.youdao.com/s/XiKlHPIr)
  26. [(三)行为树应用之装饰节点](http://note.youdao.com/s/9Z6zI3YE)
  27. [(四)行为树应用之自定义节点](http://note.youdao.com/s/AcRrY8ig)
  28. [(五)行为树应用之加载行为树](http://note.youdao.com/s/DiqLf0ES)
  29. [(六)行为树应用之节点执行](http://note.youdao.com/s/PI3Wic5D)
  30. [(七)行为树应用之设计巡逻兵AI](http://note.youdao.com/s/HTCGTgAm)
  31. [(八)行为树应用之设计丧尸AI](http://note.youdao.com/s/3wKFxcTw)
  32. [behavior3editor](https://github.com/behavior3/behavior3editor)
  33. [behavior3go](https://github.com/magicsea/behavior3go)