Преглед изворни кода

Fix bug in multires performance improvements (fixes #935).

This seems to be caused by a race condition, but adding a check to make sure
the node is defined seems to fix it.
pull/940/head
Matthew Petroff пре 4 година
родитељ
комит
50ea593a09
1 измењених фајлова са 4 додато и 2 уклоњено
  1. +4
    -2
      src/js/libpannellum.js

+ 4
- 2
src/js/libpannellum.js Прегледај датотеку

@@ -1278,8 +1278,10 @@ function Renderer(container) {
}
var node = texturesLoading[path];
delete texturesLoading[path];
node.texture = texture;
node.textureLoaded = loaded ? 2 : 1;
if (node !== undefined) {
node.texture = texture;
node.textureLoaded = loaded ? 2 : 1;
}
});
};
processNextTile = function(node) {


Loading…
Откажи
Сачувај