remove debugging print

This commit is contained in:
James B. Pollack 2015-12-22 14:38:05 -08:00
parent 7bc7bddc3a
commit 60f2314469

View file

@ -529,7 +529,6 @@ function MyController(hand) {
}; };
this.updateParticleBeam = function(position, orientation, color, speed, spread, lifespan) { this.updateParticleBeam = function(position, orientation, color, speed, spread, lifespan) {
print('lifespan::' + lifespan);
Entities.editEntity(this.particleBeam, { Entities.editEntity(this.particleBeam, {
rotation: orientation, rotation: orientation,
position: position, position: position,
@ -538,7 +537,6 @@ function MyController(hand) {
emitSpeed: speed, emitSpeed: speed,
speedSpread:spread, speedSpread:spread,
lifespan: lifespan lifespan: lifespan
}) })
}; };