UNPKG

253 BTypeScriptView Raw
1import { ColorRepresentation } from '../utils';
2import { LightProbe } from './LightProbe';
3
4export class AmbientLightProbe extends LightProbe {
5 constructor(color?: ColorRepresentation, intensity?: number);
6
7 readonly isAmbientLightProbe: true;
8}