Parcourir la source

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

pull/567/head
David von Oheimb il y a 6 ans
committed by Matthew Petroff
Parent
révision
d402e4afd5
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

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


Chargement…
Annuler
Enregistrer