UNPKG

three

Version:

JavaScript 3D library

18 lines (9 loc) 233 B
import { Light } from './Light.js'; class AmbientLight extends Light { constructor( color, intensity ) { super( color, intensity ); this.isAmbientLight = true; this.type = 'AmbientLight'; } } export { AmbientLight };