bevy_tnua/control_helpers/
mod.rs

1//! Various helpers to make Tnua's advanced features easier to use.
2//!
3//! See <https://github.com/idanarye/bevy-tnua/wiki>
4//!
5//! Tnua exposes its mid-level data for user systems to allow as much flexibility and
6//! customizability as it can provide. This, however, means that some of the advanced features can
7//! be complex to use. This module provides helpers that allow using these features in an easier
8//! although less flexible way.
9mod air_actions_tracking;
10mod blip_reuse_avoidance;
11mod crouch_enforcer;
12mod simple_fall_through_platforms;
13
14pub use air_actions_tracking::*;
15pub use blip_reuse_avoidance::*;
16pub use crouch_enforcer::*;
17pub use simple_fall_through_platforms::*;