Browse Source

Do not print a bunch of bullshit from the physics system

Getty Ritter 4 years ago
parent
commit
4f60a5454e
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/sys/physics.rs

+ 1 - 4
src/sys/physics.rs

@@ -53,10 +53,7 @@ impl<'a> specs::System<'a> for Collide {
                     pos.clone()
                 };
                 bf.create_proxy(
-                    { let v = bl.volume.aabb(&Isometry2::new(Vector2::new(np.x, np.y), nalgebra::zero()));
-                      println!("{:?}", v);
-                      v
-                    },
+                    bl.volume.aabb(&Isometry2::new(Vector2::new(np.x, np.y), nalgebra::zero())),
                     e,
                 )
         }).collect();