Explorar el Código

fixed black screen when fading

pull/880/head
NiHoel hace 5 años
padre
commit
d1b36ec3e6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/js/pannellum.js

+ 1
- 1
src/js/pannellum.js Ver fichero

@@ -2369,7 +2369,7 @@ function loadScene(sceneId, targetPitch, targetYaw, targetHfov, fadeDone) {
fadeImg.style.width = '100%';
fadeImg.style.height = '100%';
fadeImg.onload = function() {
loadScene(sceneId, targetPitch, targetYaw, targetHfov, true);
setTimeout(() => loadScene(sceneId, targetPitch, targetYaw, targetHfov, true), 100); // prevents black flickering before fading
};
fadeImg.src = data;
renderContainer.appendChild(fadeImg);


Cargando…
Cancelar
Guardar