Add wheel values to toString() for MouseMotionEvent

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10895 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
iwg..ic 2013-11-20 13:21:18 +00:00
parent fe32d59515
commit 813d163ea7

View File

@ -103,7 +103,8 @@ public class MouseMotionEvent extends InputEvent {
@Override
public String toString(){
return "MouseMotion(X="+x+", Y="+y+", DX="+dx+", DY="+dy+")";
return "MouseMotion(X="+x+", Y="+y+", DX="+dx+", DY="+dy+
", Wheel="+wheel+", dWheel="+deltaWheel+")";
}
}