Parcourir la source

* 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
Sha..rd il y a 13 ans
Parent
commit
4aea96f4b9
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      engine/src/niftygui/com/jme3/niftygui/InputSystemJme.java

+ 2 - 1
engine/src/niftygui/com/jme3/niftygui/InputSystemJme.java

@@ -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();