Преглед изворни кода

Fix bug in handling of XMP pitch and roll data.

pull/101/head
Matthew Petroff пре 9 година
родитељ
комит
c1317b1dfb
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/js/libpannellum.js

+ 1
- 1
src/js/libpannellum.js Прегледај датотеку

@@ -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];
}



Loading…
Откажи
Сачувај