瀏覽代碼

Fix autorotate.

pull/8/head
Matthew Petroff 10 年之前
父節點
當前提交
e89fab6069
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      src/js/pannellum.js

+ 3
- 1
src/js/pannellum.js 查看文件

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


Loading…
取消
儲存