Ver código fonte

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

tags/2.5.3
Matthew Petroff 5 anos atrás
pai
commit
6fe51935c8
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/js/pannellum.js

+ 1
- 1
src/js/pannellum.js Ver arquivo

@@ -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) {


Carregando…
Cancelar
Salvar