1234567891011121314151617181920 |
- import { Light } from './Light.js';
- function AmbientLight( color, intensity ) {
- Light.call( this, color, intensity );
- this.type = 'AmbientLight';
- }
- AmbientLight.prototype = Object.assign( Object.create( Light.prototype ), {
- constructor: AmbientLight,
- isAmbientLight: true
- } );
- export { AmbientLight };
|