@inweb/viewer-three 26.12.3 → 26.12.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.
@@ -34790,7 +34790,7 @@ void main() {
34790
34790
  this.overlayElement.style.position = "fixed";
34791
34791
  this.overlayElement.style.zIndex = "0";
34792
34792
  this.overlayElement.style.touchAction = "none";
34793
- document.body.appendChild(this.overlayElement);
34793
+ canvasElement.parentElement.appendChild(this.overlayElement);
34794
34794
  this.joyStickCanvas = document.createElement("canvas");
34795
34795
  this.joyStickCanvas.id = "joyStickCanvas";
34796
34796
  this.joyStickCanvas.width = this.CANVAS_SIZE;
@@ -38181,7 +38181,6 @@ void main() {
38181
38181
  const uniqueTextureIds = new Set();
38182
38182
  if (Array.isArray(this.structures)) {
38183
38183
  for (const structure of this.structures) {
38184
- console.log(structure.materialCache.values());
38185
38184
  try {
38186
38185
  for (const entry of structure.materialCache.values()) {
38187
38186
  if (entry?.mesh?.uuid) uniqueMaterialIds.add(entry.mesh.uuid);