1 2 3 4 5 6 7 8 9 10
/** * Base Light class */ class Light { constructor() { this.intensity = 1.0; } } export { Light };