UNPKG

570 BTypeScriptView Raw
1import { Light } from './../lights/Light';
2import { Matrix4 } from './../math/Matrix4';
3import { Object3D } from './../core/Object3D';
4import { LineSegments } from '../objects/LineSegments';
5import { ColorRepresentation } from '../utils';
6
7export class SpotLightHelper extends Object3D {
8 constructor(light: Light, color?: ColorRepresentation);
9
10 light: Light;
11 matrix: Matrix4;
12
13 /**
14 * @default false
15 */
16 matrixAutoUpdate: boolean;
17 color: ColorRepresentation | undefined;
18 cone: LineSegments;
19
20 dispose(): void;
21 update(): void;
22}