diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-10-02 17:36:30 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2022-10-02 17:36:30 +0200 |
| commit | 36e85d0708e53a01731dfa95a9a2b4792ef03fe2 (patch) | |
| tree | 3ab02f579d8cc603c0aca5b387a8b1368281320c /src/lib.rs | |
| parent | a1802323285622e0626cd69c7ea3b3ca60638b2e (diff) | |
| download | rapier-36e85d0708e53a01731dfa95a9a2b4792ef03fe2.tar.gz rapier-36e85d0708e53a01731dfa95a9a2b4792ef03fe2.tar.bz2 rapier-36e85d0708e53a01731dfa95a9a2b4792ef03fe2.zip | |
Add a character controller implementation
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -130,6 +130,7 @@ pub(crate) const INVALID_USIZE: usize = INVALID_U32 as usize; /// The string version of Rapier. pub const VERSION: &str = env!("CARGO_PKG_VERSION"); +pub mod control; pub mod counters; pub mod data; pub mod dynamics; @@ -202,6 +203,7 @@ pub mod math { /// Prelude containing the common types defined by Rapier. pub mod prelude { + // pub use crate::controller::*; pub use crate::dynamics::*; pub use crate::geometry::*; pub use crate::math::*; |
