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.
16 lines • 688 B
TypeScript
import { AViewerPluginSync } from '../../viewer';
import { IObject3D } from '../../core';
/**
* Adds support for generating different types of lights and camera objects in the viewer.
* @category Plugins
*/
export declare class Object3DGeneratorPlugin extends AViewerPluginSync {
static readonly PluginType = "Object3DGeneratorPlugin";
enabled: boolean;
toJSON: any;
protected _selectedType: string;
generate(type?: string, params?: any, addToScene?: boolean, select?: boolean): IObject3D<import('../../core').IObject3DEventMap>;
generators: Record<string, (params?: any) => IObject3D>;
constructor();
}
//# sourceMappingURL=Object3DGeneratorPlugin.d.ts.map