threepipe
Version:
A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.
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