xeogl icon indicating copy to clipboard operation
xeogl copied to clipboard

A bug of CamerControl

Open jacklincao opened this issue 6 years ago • 2 comments

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.

jacklincao avatar Dec 17 '18 03:12 jacklincao

I confirmed this bug, my solution is changing += into -=; I think two solutions are equal.

yihoo avatar Mar 01 '19 04:03 yihoo

#311 #312

Swaggaaa avatar May 08 '19 13:05 Swaggaaa