5 releases (breaking)

0.5.0 Feb 20, 2024
0.4.0 Nov 8, 2023
0.3.0 Oct 8, 2023
0.2.0 Sep 23, 2023
0.1.0 Sep 18, 2023

#464 in Game dev

Download history 149/week @ 2024-02-18 28/week @ 2024-02-25 6/week @ 2024-03-03 2/week @ 2024-03-10 56/week @ 2024-03-31

59 downloads per month

MIT/Apache

83KB
2K SLoC

bevior_tree

Crates.io Doc.rs MIT/Apache 2.0

bevior_tree is behavior tree plugin for Bevy.

See examples directory. The chase.rs example is written for your first step. Docs are available, too.

If you want to know about specific node, unit tests in the code might help.

This crate started with reference to seldom_state, which is good for state machines.

Comparison

bevior_tree is not the only option for making game ai. Also you don't have to choose only one. Choose or combine them for your needs. For example:

  • seldom_state is implementation of state machine. Good for things that have rigid states, not limiting to ai. No good for lots of interconnected states, since it has too much transitions to add.
  • big-brain is implementation of utility ai. Utility ai select next action by their utility (expected gain). Perhaps you can use ForcedSelector kind in bevior_tree::sequential to do similar things.

Compatibility

Bevy bevior_tree
0.13 0.5
0.12 0.4
0.11 0.1 - 0.3

License

bevior_tree is dual-licensed under MIT and Apache 2.0 at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~17–47MB
~734K SLoC