remove debug print

This commit is contained in:
Philip Rosedale 2014-09-11 12:15:02 -07:00
parent d16b42ff47
commit 5c77040235

View file

@ -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;