Spaces:
Running
Running
File size: 408 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import { SphericalHarmonics3 } from './../math/SphericalHarmonics3';
import { Light } from './Light';
export class LightProbe extends Light {
constructor(sh?: SphericalHarmonics3, intensity?: number);
/**
* @default 'LightProbe'
*/
type: string;
readonly isLightProbe: true;
/**
* @default new THREE.SphericalHarmonics3()
*/
sh: SphericalHarmonics3;
fromJSON(json: object): LightProbe;
}
|