Update whiteboardEntityScript.js

Removed logging
This commit is contained in:
Eric Levin 2015-11-23 12:04:13 -08:00
parent 08a64f6a6b
commit 7e8b692499

View file

@ -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();
});
});