소스 검색

Fix behavior of `multiResMinHfov` to match docs (fixes #783).

tags/2.5.3
Matthew Petroff 5 년 전
부모
커밋
6fe51935c8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/js/pannellum.js

+ 1
- 1
src/js/pannellum.js 파일 보기

@@ -2191,7 +2191,7 @@ function zoomOut() {
function constrainHfov(hfov) {
// Keep field of view within bounds
var minHfov = config.minHfov;
if (config.type == 'multires' && renderer && config.multiResMinHfov) {
if (config.type == 'multires' && renderer && !config.multiResMinHfov) {
minHfov = Math.min(minHfov, renderer.getCanvas().width / (config.multiRes.cubeResolution / 90 * 0.9));
}
if (minHfov > config.maxHfov) {


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