diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-10-02 17:55:23 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2022-10-02 17:55:23 +0200 |
| commit | a8865296695db04969e9dbe806c489187ba20d0d (patch) | |
| tree | 6475d8bdd327d26ff576577e3d2a01018d887864 /examples2d | |
| parent | 36e85d0708e53a01731dfa95a9a2b4792ef03fe2 (diff) | |
| download | rapier-a8865296695db04969e9dbe806c489187ba20d0d.tar.gz rapier-a8865296695db04969e9dbe806c489187ba20d0d.tar.bz2 rapier-a8865296695db04969e9dbe806c489187ba20d0d.zip | |
Fix warnings
Diffstat (limited to 'examples2d')
| -rw-r--r-- | examples2d/character_controller2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples2d/character_controller2.rs b/examples2d/character_controller2.rs index 6f1ed92..ff500e9 100644 --- a/examples2d/character_controller2.rs +++ b/examples2d/character_controller2.rs @@ -131,7 +131,7 @@ pub fn init_world(testbed: &mut Testbed) { (run_state.time * 2.0).sin() * 2.0, (run_state.time * 5.0).sin() * 1.5 ]; - let angvel = run_state.time.sin() * 0.5; + // let angvel = run_state.time.sin() * 0.5; // Update the velocity-based kinematic body by setting its velocity. if let Some(platform) = physics.bodies.get_mut(platform_handle) { |
