From 151f48285495ecaf78ab666f28f977b32d9ad5bf Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 10 Apr 2023 15:25:00 -0500 Subject: [PATCH] Remove logging. --- src/pathfinding.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pathfinding.rs b/src/pathfinding.rs index 6b83047..287f533 100644 --- a/src/pathfinding.rs +++ b/src/pathfinding.rs @@ -331,7 +331,7 @@ fn negotiate_path( .exclude_sensors() .exclude_collider(entity), ) { - println!("{entity:?} is stuck, hit: {hit:?}, TOI: {toi:?}"); + // println!("{entity:?} is stuck, hit: {hit:?}, TOI: {toi:?}"); // TODO: Remove when we have an actual character controller. transform.translation = next.extend(0.); continue;