Explorar el Código

Tweak keyboard pan / zoom speeds.

pull/929/head
Matthew Petroff hace 4 años
padre
commit
7278d9a3b8
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      src/js/pannellum.js

+ 3
- 3
src/js/pannellum.js Ver fichero

@@ -1240,12 +1240,12 @@ function keyRepeat() {
if (prevTime === undefined) {
prevTime = newTime;
}
var diff = (newTime - prevTime) * config.hfov / 1700;
diff = Math.min(diff, 1.0);
var diff = (newTime - prevTime) * config.hfov / 1200;
diff = Math.min(diff, 10.0); // Avoid jump if something goes wrong with time diff
// If minus key is down
if (keysDown[0] && config.keyboardZoom === true) {
setHfov(config.hfov + (speed.hfov * 0.8 + 0.5) * diff);
setHfov(config.hfov + (speed.hfov * 0.8 + 0.4) * diff);
isKeyDown = true;
}


Cargando…
Cancelar
Guardar