UNPKG

249 BJavaScriptView Raw
1import { Light } from './Light.js';
2
3class AmbientLight extends Light {
4
5 constructor( color, intensity ) {
6
7 super( color, intensity );
8
9 this.type = 'AmbientLight';
10
11 }
12
13}
14
15AmbientLight.prototype.isAmbientLight = true;
16
17export { AmbientLight };