threepipe
Version:
A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.
19 lines • 821 B
TypeScript
import { ColorRepresentation, Object3D, PointLight } from 'three';
import { Wireframe } from 'three/examples/jsm/lines/Wireframe.js';
import { ALightHelperWidget } from './ALightHelperWidget';
import { IUiConfigContainer } from 'uiconfig.js';
import { LineMaterial2 } from '../../core';
export declare class PointLightHelper2 extends ALightHelperWidget {
color: ColorRepresentation | undefined;
lightSphere: Wireframe;
light: (PointLight & IUiConfigContainer) | undefined;
material: LineMaterial2;
lineWidth: number;
size: number;
constructor(light: PointLight, size?: number, color?: ColorRepresentation);
dispose(): void;
update(): void;
static Check(light: Object3D): true;
static Create(light: Object3D): PointLightHelper2;
}
//# sourceMappingURL=PointLightHelper2.d.ts.map