Spaces:
Sleeping
Sleeping
File size: 291 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 | import { ColorRepresentation } from '../utils';
import { LightProbe } from './LightProbe';
export class HemisphereLightProbe extends LightProbe {
constructor(skyColor?: ColorRepresentation, groundColor?: ColorRepresentation, intensity?: number);
readonly isHemisphereLightProbe: true;
}
|