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.
14 lines • 567 B
TypeScript
import { Vector3 } from 'three';
import { AViewerPluginSync, ThreeViewer } from '../../viewer';
export declare class HDRiGroundPlugin extends AViewerPluginSync {
static readonly PluginType = "HDRiGroundPlugin";
enabled: boolean;
worldRadius: number;
tripodHeight: number;
originPosition: Vector3;
promptOnBackgroundMismatch: boolean;
constructor(enabled?: boolean, promptOnBackgroundMismatch?: boolean);
setDirty(): void;
onAdded(viewer: ThreeViewer): void;
}
//# sourceMappingURL=../../src/plugins/extras/HDRiGroundPlugin.d.ts.map