UNPKG

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 844 B
import { ColorRepresentation, Object3D, SpotLight } from 'three'; import { LineSegments2 } from 'three/examples/jsm/lines/LineSegments2.js'; import { ALightHelperWidget } from './ALightHelperWidget'; import { IUiConfigContainer } from 'uiconfig.js'; import { LineMaterial2 } from '../../core'; export declare class SpotLightHelper2 extends ALightHelperWidget { color: ColorRepresentation | undefined; cone: LineSegments2; light: (SpotLight & IUiConfigContainer) | undefined; hMaterial: LineMaterial2; lineWidth: number; constructor(light: SpotLight, size?: number, color?: ColorRepresentation); dispose(): void; private _v1; update(): void; static Check(light: Object3D): true; static Create(light: Object3D): SpotLightHelper2; } //# sourceMappingURL=../../src/three/widgets/SpotLightHelper2.d.ts.map