From a8865296695db04969e9dbe806c489187ba20d0d Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 2 Oct 2022 17:55:23 +0200 Subject: Fix warnings --- examples2d/character_controller2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples2d') 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) { -- cgit