Ver a proveniência

Allow `loadScene` to be called from `load` event handler (fixes #1144).

pull/1165/head
Matthew Petroff há 1 ano
ascendente
cometimento
5656fe6f07
1 ficheiros alterados com 9 adições e 3 eliminações
  1. +9
    -3
      src/js/pannellum.js

+ 9
- 3
src/js/pannellum.js Ver ficheiro

@@ -1787,13 +1787,14 @@ function renderInit() {
if (config.backgroundColor !== undefined)
params.backgroundColor = config.backgroundColor;
renderer.init(panoImage, config.type, config.haov * Math.PI / 180, config.vaov * Math.PI / 180, config.vOffset * Math.PI / 180, renderInitCallback, params);
} catch(event) {
// Panorama not loaded

if (config.dynamic !== true) {
// Allow image to be garbage collected
panoImage = undefined;
}
} catch(event) {
// Panorama not loaded

// Display error if there is a bad texture
if (event.type == 'webgl error' || event.type == 'no webgl') {
anError();
@@ -1842,6 +1843,11 @@ function renderInitCallback() {
preview = undefined;
}
loaded = true;

if (config.dynamic !== true) {
// Allow image to be garbage collected
panoImage = undefined;
}
animateInit();



Carregando…
Cancelar
Guardar