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