@smarterplan/ngx-smarterplan-core 1.2.36 → 1.2.37

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.
@@ -3954,7 +3954,10 @@ class MatterportService {
3954
3954
  toggleObjectVisibility(objectId) {
3955
3955
  let obj = this.dictionnaryObjects3D.get(objectId);
3956
3956
  obj.obj3D.visible = !obj.obj3D.visible;
3957
- //return obj.obj3D.visible;
3957
+ }
3958
+ isObjectVisible(objectId) {
3959
+ let obj = this.dictionnaryObjects3D.get(objectId);
3960
+ return obj.obj3D.visible;
3958
3961
  }
3959
3962
  async pointCameraTo3DObject(objectId) {
3960
3963
  let obj = this.dictionnaryObjects3D.get(objectId);