Skip to content

Commit 7a0c66e

Browse files
more info
1 parent d0d185e commit 7a0c66e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/model/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ function setVisibilityOfInstance(meshKey, visibleScale, instanceIndex, visible)
600600

601601
function setVisibilityAtMulti(positions, visible) {
602602
let updatedMeshes = {};
603-
for(let pos of positions) {
603+
for (let pos of positions) {
604604
let info = this.instancePositionMap[pos[0] + "_" + pos[1] + "_" + pos[2]];
605605
if (info) {
606606
let mesh = setVisibilityOfInstance(info.key, info.scale, info.index, visible);
@@ -1024,7 +1024,7 @@ let createCube = function (width, height, depth, name, faces, fallbackFaces, tex
10241024
img: img
10251025
};
10261026
if (!textures.hasOwnProperty(textureRef) || !textures[textureRef]) {
1027-
console.warn("Missing texture for " + textureRef);
1027+
console.warn("Missing texture for " + textureRef + " / " + canvasKey);
10281028
resolve(null);
10291029
} else {
10301030
img.src = textures[textureRef];

0 commit comments

Comments
 (0)