behaviortree 0.7.4

A #![no_std] compatible behavior tree library similar to 'BehaviorTree.CPP'.
Documentation
1
2
3
4
5
6
7
8
9
// Copyright © 2025 Stephan Kunz
//! Built-in `Condition` behaviors of [`behaviortree`](crate).

mod script_condition;
mod was_entry_updated;

// flatten
pub use script_condition::ScriptCondition;
pub use was_entry_updated::WasEntryUpdated;