From 60f2314469db50a6ca06c9f1b3a163d5dbf5d28a Mon Sep 17 00:00:00 2001 From: "James B. Pollack" Date: Tue, 22 Dec 2015 14:38:05 -0800 Subject: [PATCH] remove debugging print --- examples/controllers/handControllerGrab.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/controllers/handControllerGrab.js b/examples/controllers/handControllerGrab.js index bfe51927d0..61e7e1d16a 100644 --- a/examples/controllers/handControllerGrab.js +++ b/examples/controllers/handControllerGrab.js @@ -529,7 +529,6 @@ function MyController(hand) { }; this.updateParticleBeam = function(position, orientation, color, speed, spread, lifespan) { - print('lifespan::' + lifespan); Entities.editEntity(this.particleBeam, { rotation: orientation, position: position, @@ -538,7 +537,6 @@ function MyController(hand) { emitSpeed: speed, speedSpread:spread, lifespan: lifespan - }) };