* Made nifty mouse wheel rotation be the same as nifty LWJGL's renderer (1/-1 instead of 120/-120)
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9994 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
e8f747e8ce
commit
4aea96f4b9
@ -181,9 +181,10 @@ public class InputSystemJme implements InputSystem, RawInputListener {
|
||||
}
|
||||
|
||||
private void onMouseMotionEventQueued(MouseMotionEvent evt, NiftyInputConsumer nic) {
|
||||
int wheel = evt.getDeltaWheel() / 120;
|
||||
x = evt.getX();
|
||||
y = height - evt.getY();
|
||||
nic.processMouseEvent(x, y, evt.getDeltaWheel(), -1, false);
|
||||
nic.processMouseEvent(x, y, wheel, -1, false);
|
||||
// if (nic.processMouseEvent(niftyEvt) /*|| nifty.getCurrentScreen().isMouseOverElement()*/){
|
||||
// Do not consume motion events
|
||||
//evt.setConsumed();
|
||||
|
Loading…
x
Reference in New Issue
Block a user