@shopware-ag/dive
Version:
Shopware Spatial Framework
18 lines (17 loc) • 443 B
TypeScript
import { Color, Object3D } from 'three';
/**
* A basic ambient light.
*
* Can change the color, intensity, and visibility of the light.
*
* @module
*/
export default class DIVEAmbientLight extends Object3D {
readonly isDIVELight: true;
readonly isDIVEAmbientLight: true;
private _light;
constructor();
SetColor(color: Color): void;
SetIntensity(intensity: number): void;
SetEnabled(enabled: boolean): void;
}