From 572b120bf0af9c1ccdc20cca487f9024ae790083 Mon Sep 17 00:00:00 2001 From: ericrius1 Date: Tue, 8 Sep 2015 15:57:31 -0700 Subject: [PATCH] removed print statements --- examples/controllers/handControllerGrab.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/controllers/handControllerGrab.js b/examples/controllers/handControllerGrab.js index 87b21602c5..2ebea75abc 100644 --- a/examples/controllers/handControllerGrab.js +++ b/examples/controllers/handControllerGrab.js @@ -138,7 +138,6 @@ controller.prototype.checkForIntersections = function(origin, direction) { if (intersection.intersects && intersection.properties.collisionsWillMove === 1) { var handPosition = Controller.getSpatialControlPosition(this.palm); this.distanceToEntity = Vec3.distance(handPosition, intersection.properties.position); - print("distance to entity " + JSON.stringify(this.distanceToEntity)); Entities.editEntity(this.pointer, { linePoints: [ ZERO_VEC, @@ -191,7 +190,6 @@ controller.prototype.hidePointer = function() { controller.prototype.letGo = function() { if (this.grabbedEntity && this.actionID) { - print("DELETE ACTION") this.deactivateEntity(this.grabbedEntity); Entities.deleteAction(this.grabbedEntity, this.actionID); }