@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.
@@ -4122,7 +4122,10 @@ class MatterportService {
4122
4122
  toggleObjectVisibility(objectId) {
4123
4123
  let obj = this.dictionnaryObjects3D.get(objectId);
4124
4124
  obj.obj3D.visible = !obj.obj3D.visible;
4125
- //return obj.obj3D.visible;
4125
+ }
4126
+ isObjectVisible(objectId) {
4127
+ let obj = this.dictionnaryObjects3D.get(objectId);
4128
+ return obj.obj3D.visible;
4126
4129
  }
4127
4130
  pointCameraTo3DObject(objectId) {
4128
4131
  return __awaiter(this, void 0, void 0, function* () {