avian3d/character_controller/mod.rs
1//! Utilities for implementing character controllers.
2
3pub mod move_and_slide;
4mod velocity_project;
5
6/// Re-exports common types related to character controller functionality.
7pub mod prelude {
8 pub use super::move_and_slide::{
9 MoveAndSlide, MoveAndSlideConfig, MoveAndSlideHitData, MoveAndSlideHitResponse,
10 MoveAndSlideOutput,
11 };
12}