Sfoglia il codice sorgente

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

pull/567/head
David von Oheimb 6 anni fa
committed by Matthew Petroff
parent
commit
d402e4afd5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/js/pannellum.js

+ 1
- 1
src/js/pannellum.js Vedi File

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


Caricamento…
Annulla
Salva