Ver código fonte

fix a copy&paste error on check for movement stop if opposite controls are pressed (#564)

pull/567/head
David von Oheimb 6 anos atrás
committed by Matthew Petroff
pai
commit
d402e4afd5
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

@@ -1267,7 +1267,7 @@ function keyRepeat() {
}
// Stop movement if opposite controls are pressed
if (keysDown[0] && keysDown[0]) {
if (keysDown[0] && keysDown[1]) {
speed.hfov = 0;
}
if ((keysDown[2] || keysDown[6]) && (keysDown[3] || keysDown[7])) {


Carregando…
Cancelar
Salvar