starry / backend /libs /three /lights /LightProbe.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
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;
}