From 7e8b692499b3d8e075cdb904dfe5d8a40ac4d0c5 Mon Sep 17 00:00:00 2001 From: Eric Levin Date: Mon, 23 Nov 2015 12:04:13 -0800 Subject: [PATCH] Update whiteboardEntityScript.js Removed logging --- examples/painting/whiteboard/whiteboardEntityScript.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/painting/whiteboard/whiteboardEntityScript.js b/examples/painting/whiteboard/whiteboardEntityScript.js index c0200b173a..61d7291e11 100644 --- a/examples/painting/whiteboard/whiteboardEntityScript.js +++ b/examples/painting/whiteboard/whiteboardEntityScript.js @@ -90,9 +90,7 @@ y: this.currentStrokeWidth } }); - print("TRIGGER VALUE " + this.triggerValue); if (this.triggerValue > PAINT_TRIGGER_THRESHOLD) { - print("PAINT") this.paint(this.intersection.intersection, this.intersection.surfaceNormal); } else { this.painting = false; @@ -254,4 +252,4 @@ // entity scripts always need to return a newly constructed object of our type return new Whiteboard(); -}); \ No newline at end of file +});