Parcourir la source

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

tags/2.5.3
Matthew Petroff il y a 5 ans
Parent
révision
6fe51935c8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/js/pannellum.js

+ 1
- 1
src/js/pannellum.js Voir le fichier

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


Chargement…
Annuler
Enregistrer