Add a dynamic ray-cast vehicle controller

This commit is contained in:
Sébastien Crozet
2022-12-04 18:27:38 +01:00
parent 87feb3a48d
commit 849f398031
6 changed files with 1060 additions and 1 deletions

View File

@@ -5,4 +5,10 @@ pub use self::character_controller::{
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;