Explorar el Código

Fix bug in handling of XMP pitch and roll data.

pull/101/head
Matthew Petroff hace 9 años
padre
commit
c1317b1dfb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/js/libpannellum.js

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

@@ -219,7 +219,7 @@ function Renderer(container, image, imageType, dynamic) {
}

// Store horizon pitch and roll if applicable
if (image.horizonPitch && image.horizonRoll) {
if (image.horizonPitch !== undefined && image.horizonRoll !== undefined) {
pose = [image.horizonPitch, image.horizonRoll];
}



Cargando…
Cancelar
Guardar