You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find a bug in line 1113 if (down) { panVy += elapsed * keyboardPanRate; } in src/controls/cameraControl.js, when I hold down X to let cameraControl down. And I fixed this problem by modifying the expression if (down) { panVy += -elapsed * keyboardPanRate; }, I have make a PR about it, Please see if my modification is correct. Thanks.
The text was updated successfully, but these errors were encountered:
I find a bug in line 1113
if (down) { panVy += elapsed * keyboardPanRate; }
insrc/controls/cameraControl.js
, when I hold downX
to let cameraControl down. And I fixed this problem by modifying the expressionif (down) { panVy += -elapsed * keyboardPanRate; }
, I have make a PR about it, Please see if my modification is correct. Thanks.The text was updated successfully, but these errors were encountered: