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) {
print('lifespan::' + lifespan);
Entities.editEntity(this.particleBeam, {
rotation: orientation,
position: position,
@ -538,7 +537,6 @@ function MyController(hand) {
emitSpeed: speed,
speedSpread:spread,
lifespan: lifespan
})
};