From 5c770402356f0dfc68c75514996ccb561729d6fe Mon Sep 17 00:00:00 2001 From: Philip Rosedale Date: Thu, 11 Sep 2014 12:15:02 -0700 Subject: [PATCH] remove debug print --- examples/headMove.js | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/headMove.js b/examples/headMove.js index f2ff3e82a6..0a7686c569 100644 --- a/examples/headMove.js +++ b/examples/headMove.js @@ -101,7 +101,6 @@ function moveWithHead(deltaTime) { } if (isInRoom(position)) { - //print("In room!"); // Impose constraints to keep you in the space if (position.x < roomLimits.xMin) { thrust.x += (roomLimits.xMin - position.x) * WALL_BOUNCE * deltaTime;