aboutsummaryrefslogtreecommitdiff
path: root/src/control/mod.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-10-02 17:36:30 +0200
committerSébastien Crozet <developer@crozet.re>2022-10-02 17:36:30 +0200
commit36e85d0708e53a01731dfa95a9a2b4792ef03fe2 (patch)
tree3ab02f579d8cc603c0aca5b387a8b1368281320c /src/control/mod.rs
parenta1802323285622e0626cd69c7ea3b3ca60638b2e (diff)
downloadrapier-36e85d0708e53a01731dfa95a9a2b4792ef03fe2.tar.gz
rapier-36e85d0708e53a01731dfa95a9a2b4792ef03fe2.tar.bz2
rapier-36e85d0708e53a01731dfa95a9a2b4792ef03fe2.zip
Add a character controller implementation
Diffstat (limited to 'src/control/mod.rs')
-rw-r--r--src/control/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/control/mod.rs b/src/control/mod.rs
new file mode 100644
index 0000000..0290f2c
--- /dev/null
+++ b/src/control/mod.rs
@@ -0,0 +1,8 @@
+//! Utilities for controlling the trajectories of objects in a non-physical way.
+
+pub use self::character_controller::{
+ CharacterAutostep, CharacterCollision, CharacterLength, EffectiveCharacterMovement,
+ KinematicCharacterController,
+};
+
+mod character_controller;