소스 검색

fixed texture processing

pull/880/head
NiHoel 6 년 전
부모
커밋
e673117a32
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      src/js/libpannellum.js

+ 3
- 3
src/js/libpannellum.js 파일 보기

@@ -1565,12 +1565,12 @@ function Renderer(container) {
this.texture = texture;
this.callback = callback;
if (src instanceof Function) {
src(node, this.image, this.texture).then(img => {
if (!image)
src(JSON.parse(JSON.stringify(node)), this.image, this.texture).then(img => {
if (!img)
this.callback(this.texture, false);
else if (img != this.image) {
processLoadedTexture(img, this.texture);
this.callback(img, true);
this.callback(this.texture, true);
}
})
} else {


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