@shopware-ag/dive
Version:
Shopware Spatial Framework
20 lines (19 loc) • 558 B
TypeScript
import { Color, Object3D } from 'three/webgpu';
import { DIVESelectable } from '../../index.ts';
/**
* A basic ambient light.
*
* Can change the color, intensity, and visibility of the light.
*
* @module
*/
export declare class DIVEAmbientLight extends Object3D implements DIVESelectable {
readonly isDIVELight: true;
readonly isDIVEAmbientLight: true;
readonly isSelectable: true;
private _light;
constructor();
setColor(color: Color): void;
setIntensity(intensity: number): void;
setEnabled(enabled: boolean): void;
}