bevy_steering/
lib.rs

1mod agent;
2mod behaviors;
3mod control;
4mod movement;
5mod neighbors;
6mod obstacles;
7mod plugin;
8pub mod prelude;
9mod speed;
10
11pub(crate) const SMALL_THRESHOLD: f32 = 0.0001;