From 36e85d0708e53a01731dfa95a9a2b4792ef03fe2 Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 2 Oct 2022 17:36:30 +0200 Subject: Add a character controller implementation --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 586b3f5..baffedc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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::*; -- cgit From f7bec3c49cf6ca24d2878a9dcd20656d26de5cc7 Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 2 Oct 2022 18:30:26 +0200 Subject: Update CHANGELOG --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index baffedc..0c640c7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -203,7 +203,6 @@ 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::*; -- cgit