@smarterplan/ngx-smarterplan-core 1.2.3 → 1.2.4

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.
@@ -2798,13 +2798,13 @@ class MatterportService {
2798
2798
  const node = sceneObject.addNode();
2799
2799
  node.start();
2800
2800
  this.threeJSScene = node.obj3D.parent;
2801
- await this.sdk.Scene.configure((renderer, three) => {
2802
- renderer.physicallyCorrectLights = true;
2803
- renderer.outputEncoding = three.sRGBEncoding;
2804
- renderer.shadowMap.enabled = true;
2805
- renderer.shadowMap.bias = 0.0001;
2806
- renderer.shadowMap.type = three.PCFSoftShadowMap;
2807
- });
2801
+ // await this.sdk.Scene.configure((renderer: any, three: any) => {
2802
+ // renderer.physicallyCorrectLights = true;
2803
+ // renderer.outputEncoding = three.sRGBEncoding;
2804
+ // renderer.shadowMap.enabled = true;
2805
+ // renderer.shadowMap.bias = 0.0001;
2806
+ // renderer.shadowMap.type = three.PCFSoftShadowMap;
2807
+ // });
2808
2808
  resolve(true);
2809
2809
  }.bind(this));
2810
2810
  });