@inweb/viewer-visualize 27.1.10 → 27.2.1
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.
- package/dist/viewer-visualize.js +3 -1
- package/dist/viewer-visualize.js.map +1 -1
- package/dist/viewer-visualize.min.js +1 -1
- package/dist/viewer-visualize.module.js +2 -1
- package/dist/viewer-visualize.module.js.map +1 -1
- package/lib/Viewer/Viewer.d.ts +3 -3
- package/package.json +6 -6
- package/src/Viewer/Components/InfoComponent.ts +1 -0
- package/src/Viewer/Viewer.ts +3 -3
package/dist/viewer-visualize.js
CHANGED
|
@@ -572,6 +572,7 @@
|
|
|
572
572
|
this.memory = {
|
|
573
573
|
geometries: 0,
|
|
574
574
|
geometryBytes: 0,
|
|
575
|
+
optimizedGeometryBytes: 0,
|
|
575
576
|
textures: 0,
|
|
576
577
|
textureBytes: 0,
|
|
577
578
|
materials: 0,
|
|
@@ -3487,6 +3488,7 @@
|
|
|
3487
3488
|
this.viewer.info.optimizedScene.edges = 0;
|
|
3488
3489
|
this.viewer.info.memory.geometries = 0;
|
|
3489
3490
|
this.viewer.info.memory.geometryBytes = 0;
|
|
3491
|
+
this.viewer.info.memory.optimizedGeometryBytes = 0;
|
|
3490
3492
|
this.viewer.info.memory.textures = 0;
|
|
3491
3493
|
this.viewer.info.memory.textureBytes = 0;
|
|
3492
3494
|
this.viewer.info.memory.materials = 0;
|
|
@@ -18287,7 +18289,7 @@ js: import "konva/skia-backend";
|
|
|
18287
18289
|
return this._markup;
|
|
18288
18290
|
}
|
|
18289
18291
|
configure(params) {
|
|
18290
|
-
this._visualizeJsUrl = params.visualizeJsUrl || "https://public-fhemb7e3embacwec.z02.azurefd.net/libs/visualizejs/
|
|
18292
|
+
this._visualizeJsUrl = params.visualizeJsUrl || "https://public-fhemb7e3embacwec.z02.azurefd.net/libs/visualizejs/master/Visualize.js";
|
|
18291
18293
|
this._crossOrigin = params.crossOrigin;
|
|
18292
18294
|
return this;
|
|
18293
18295
|
}
|