starry / backend /libs /three /lights /AmbientLightProbe.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { ColorRepresentation } from '../utils';
import { LightProbe } from './LightProbe';
export class AmbientLightProbe extends LightProbe {
constructor(color?: ColorRepresentation, intensity?: number);
readonly isAmbientLightProbe: true;
}