Explorar el Código

Add warning for when HFOV bounds don't make sense.

tags/2.2.0
Matthew Petroff hace 8 años
padre
commit
c5ff999e16
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. +1
    -0
      src/js/pannellum.js

+ 1
- 0
src/js/pannellum.js Ver fichero

@@ -1581,6 +1581,7 @@ function setHfov(hfov) {
}
if (minHfov >= config.maxHfov) {
// Don't change view if bounds don't make sense
console.log('HFOV bounds do not make sense (minHfov >= maxHfov).')
return;
} if (hfov < minHfov) {
config.hfov = minHfov;


Cargando…
Cancelar
Guardar