threepipe
Version:
A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.
14 lines • 559 B
TypeScript
import { Vector3 } from 'three';
import { AViewerPluginSync, ThreeViewer } from '../../viewer';
export declare class HDRiGroundPlugin extends AViewerPluginSync<'', ThreeViewer> {
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=HDRiGroundPlugin.d.ts.map