Explorar el Código

fixed texture processing

pull/880/head
NiHoel hace 6 años
padre
commit
e673117a32
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      src/js/libpannellum.js

+ 3
- 3
src/js/libpannellum.js Ver fichero

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


Cargando…
Cancelar
Guardar