Lantern.prototype.onTriggerEnter = function() {
this.light.enabled = true;
this.light.intensity += 0.5;
this.light.range += 1;
this.entity.destroy();
// console.log(this.light.intensity);
};
Only this.light.enabled = true; worked.