UNPKG

602 BTypeScriptView Raw
1import { PointLight } from './../lights/PointLight';
2import { Matrix4 } from './../math/Matrix4';
3import { Object3D } from './../core/Object3D';
4import { ColorRepresentation } from '../utils';
5
6export class PointLightHelper extends Object3D {
7 constructor(light: PointLight, sphereSize?: number, color?: ColorRepresentation);
8
9 /**
10 * @default 'PointLightHelper'
11 */
12 type: string;
13
14 light: PointLight;
15 color: ColorRepresentation | undefined;
16 matrix: Matrix4;
17
18 /**
19 * @default false
20 */
21 matrixAutoUpdate: boolean;
22
23 dispose(): void;
24 update(): void;
25}