From 1f6f4ed2caa1ca49e445e7c8448023b342581665 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Thu, 27 Mar 2025 12:11:43 +0800 Subject: [PATCH] silence log --- src/control/controller.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/control/controller.rs b/src/control/controller.rs index 9e06b42..c12f4c5 100644 --- a/src/control/controller.rs +++ b/src/control/controller.rs @@ -140,10 +140,10 @@ fn update_grounded( }); if is_grounded { - info!("grounded"); + debug!("grounded"); commands.entity(entity).insert(Grounded); } else { - info!("not grounded"); + debug!("not grounded"); commands.entity(entity).remove::(); } } @@ -208,7 +208,7 @@ fn movement( if is_grounded && jump_requested && !*jump_used { linear_velocity.y = jump_impulse.0; - info!("jump"); + debug!("jump"); *jump_used = true; }