starry / backend /libs /three /lights /HemisphereLightProbe.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 HemisphereLightProbe extends LightProbe {
constructor(skyColor?: ColorRepresentation, groundColor?: ColorRepresentation, intensity?: number);
readonly isHemisphereLightProbe: true;
}