threedviewer 0.10.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ import { PathTracingManager } from './PathTracingManager';
2
+ import * as THREE from 'three';
3
+ interface EnvironmentMapManagerParams {
4
+ renderer: THREE.WebGLRenderer;
5
+ scene: THREE.Scene;
6
+ camera: THREE.Camera;
7
+ envMapUrl?: string;
8
+ usePathTracing: boolean;
9
+ pathTracingManager: PathTracingManager | null;
10
+ backgroundBlurriness?: number;
11
+ blurStrengthPathTracing?: number;
12
+ }
13
+ export declare class EnvironmentMapManager {
14
+ private renderer;
15
+ private scene;
16
+ private camera;
17
+ private envMapUrl?;
18
+ private usePathTracing;
19
+ private pathTracingManager;
20
+ private backgroundBlurriness;
21
+ private blurStrengthPathTracing;
22
+ constructor(params: EnvironmentMapManagerParams);
23
+ load(): void;
24
+ }
25
+ export {};
@@ -15,9 +15,9 @@ export declare class SceneManager {
15
15
  private sceneInitializer;
16
16
  readonly pathTracingManager: PathTracingManager | null;
17
17
  private animationManager;
18
+ private environmentMapManager;
18
19
  constructor(threeBase: THREEBase, object: THREE.Object3D | null, options: SimpleViewerOptions, setRenderCompleteImage: (image: string | null) => void);
19
20
  onStartRendering(): void;
20
- private loadEnvironmentMap;
21
21
  getSceneElements(): {
22
22
  scene: THREE.Scene;
23
23
  camera: THREE.Camera;