UNPKG

656 BTypeScriptView Raw
1import { HemisphereLight } from './../lights/HemisphereLight';
2import { Color } from './../math/Color';
3import { Matrix4 } from './../math/Matrix4';
4import { MeshBasicMaterial } from './../materials/MeshBasicMaterial';
5import { Object3D } from './../core/Object3D';
6import { ColorRepresentation } from '../utils';
7
8export class HemisphereLightHelper extends Object3D {
9 constructor(light: HemisphereLight, size: number, color?: ColorRepresentation);
10
11 light: HemisphereLight;
12 matrix: Matrix4;
13 matrixAutoUpdate: boolean;
14 material: MeshBasicMaterial;
15
16 color: ColorRepresentation | undefined;
17
18 dispose(): void;
19 update(): void;
20}