From 5afe184c3bbfdc746077be203ff9d956e50556ab Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 4 Feb 2014 21:16:07 -0800 Subject: [PATCH] removed debug --- examples/spaceInvadersExample.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/spaceInvadersExample.js b/examples/spaceInvadersExample.js index 6e21b6be30..79e6837f21 100644 --- a/examples/spaceInvadersExample.js +++ b/examples/spaceInvadersExample.js @@ -222,7 +222,6 @@ function update() { } else { options.position = getInvaderPosition(invadersPerRow / 2, numberOfRows / 2); } - print("options.position=" + options.position.x + ", " + options.position.y + ", " + options.position.z ); options.volume = 1.0; Audio.playSound(moveSounds[currentMoveSound], options); @@ -332,7 +331,6 @@ function fireMissile() { } else { options.position = missilePosition; } - print("options.position=" + options.position.x + ", " + options.position.y + ", " + options.position.z ); options.volume = 1.0; Audio.playSound(shootSound, options); @@ -383,7 +381,6 @@ function deleteIfInvader(possibleInvaderParticle) { } else { options.position = getInvaderPosition(row, column); } - print("options.position=" + options.position.x + ", " + options.position.y + ", " + options.position.z ); options.volume = 1.0; Audio.playSound(hitSound, options); }