Newer
Older
HuangJiPC / public / static / three / src / lights / AmbientLight.js
@zhangdeliang zhangdeliang on 21 Jun 233 bytes update
import { Light } from './Light.js';

class AmbientLight extends Light {

	constructor( color, intensity ) {

		super( color, intensity );

		this.isAmbientLight = true;

		this.type = 'AmbientLight';

	}

}

export { AmbientLight };