Example #1
0
 private static void ProcessMouseWheelEvent(Sdl2NativeWindow window, MouseWheelEvent ev)
 {
     window.OnMouseWheel(ev.X, ev.Y);
 }
 public void ProcessWheelEvent(MouseWheelEvent wheel)
 {
     state.SetScrollRelative(wheel.X, wheel.Y);
 }
 static void ProcessMouseWheelEvent(Sdl2NativeWindow window, MouseWheelEvent ev)
 {
     window.OnMouseWheel(ev.X, ev.Y);
 }
Example #4
0
 public void ProcessWheelEvent(MouseWheelEvent wheel)
 {
     state.SetScrollRelative(wheel.X, wheel.Y);
 }
Example #5
0
 public void ProcessWheelEvent(MouseWheelEvent wheel)
 {
     state.WheelPrecise   += wheel.Y;
     mice[0].WheelPrecise += wheel.Y;
 }
Example #6
0
 public void ProcessWheelEvent(MouseWheelEvent wheel)
 {
     state.WheelPrecise += wheel.Y;
     mice[0].WheelPrecise += wheel.Y;
 }