ソースを参照

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;


読み込み中…
キャンセル
保存