Parcourir la source

Fix autorotate.

pull/8/head
Matthew Petroff il y a 10 ans
Parent
révision
e89fab6069
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +3
    -1
      src/js/pannellum.js

+ 3
- 1
src/js/pannellum.js Voir le fichier

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


Chargement…
Annuler
Enregistrer