소스 검색

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) {


불러오는 중...
취소
저장