Selaa lähdekoodia

Fix autorotate.

pull/8/head
Matthew Petroff 10 vuotta sitten
vanhempi
commit
e89fab6069
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. +3
    -1
      src/js/pannellum.js

+ 3
- 1
src/js/pannellum.js Näytä tiedosto

@@ -356,7 +356,9 @@ function keyRepeat() {
// If auto-rotate
if(config.autoRotate) {
// Pan
config.yaw -= config.autoRotate / (60 * diff);
if(diff > 0.000001) {
config.yaw -= config.autoRotate / 60 * diff;
}
}
prevTime = newTime;


Ladataan…
Peruuta
Tallenna