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 • 780 B
TypeScript
import { Object3D } from 'three';
import { IUiConfigContainer } from 'uiconfig.js';
import { Group2, IWidget } from '../../core';
export declare abstract class AHelperWidget extends Group2 implements IWidget {
isWidget: true;
assetType: "widget";
object: (Object3D & IUiConfigContainer) | undefined;
visible: boolean;
protected constructor(object: Object3D & IUiConfigContainer, attach?: boolean);
update(setDirty?: boolean): void;
private _objectUpdated;
protected _objectUpdate(): void;
protected _objectBeforeRender(): void;
attach(object: Object3D): this;
detach(): this;
uiConfig: import('uiconfig.js').UiObjectConfig<any, string, any>;
dispose(): void;
}
//# sourceMappingURL=../../src/three/widgets/AHelperWidget.d.ts.map