three
Version:
JavaScript 3D library
11 lines (6 loc) • 296 B
TypeScript
import { Color } from './../math/Color';
import { LightProbe } from './LightProbe';
export class HemisphereLightProbe extends LightProbe {
constructor( skyColor?: Color | string | number, groundColor?: Color | string | number, intensity?: number );
readonly isHemisphereLightProbe: true;
}