Files
rapier/src/control/mod.rs
2022-12-11 15:22:36 +01:00

15 lines
455 B
Rust

//! Utilities for controlling the trajectories of objects in a non-physical way.
pub use self::character_controller::{
CharacterAutostep, CharacterCollision, CharacterLength, EffectiveCharacterMovement,
KinematicCharacterController,
};
#[cfg(feature = "dim3")]
pub use self::ray_cast_vehicle_controller::{DynamicRayCastVehicleController, Wheel, WheelTuning};
mod character_controller;
#[cfg(feature = "dim3")]
mod ray_cast_vehicle_controller;