소스 검색

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;


불러오는 중...
취소
저장