shop-components 0.4.3 → 0.4.5

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.
@@ -10,6 +10,8 @@ interface SGLBContent {
10
10
  jsonDescription: any;
11
11
  glbContent?: ArrayBuffer;
12
12
  glb?: Object3D;
13
+ scene?: Object3D;
14
+ animations?: any[];
13
15
  }
14
16
  export declare function createSGLBFile(glbContent: ArrayBuffer, jsonDescription: any, version: number): ArrayBuffer;
15
17
  export interface SGLBLoaderProps {
@@ -0,0 +1,4 @@
1
+ import { Mesh } from 'three';
2
+ export declare class SciFiGrid extends Mesh {
3
+ constructor(size?: number, divisions?: number, opacity?: number);
4
+ }
@@ -96,8 +96,10 @@ export declare class Scene3D {
96
96
  private _rafId;
97
97
  private _destroyed;
98
98
  private _ground;
99
- private light;
99
+ private _sciFiGrid;
100
100
  private _amrRender;
101
+ private _envMap;
102
+ private _ptEnvMap;
101
103
  private _lastTarget;
102
104
  get usePathTracing(): boolean;
103
105
  private _clearAmrContent;