ソースを参照

REVIEWED: Support mouse wheel on x-axis #1948

pull/1954/head
raysan5 3年前
コミット
7c1889c282
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      src/core.c

+ 2
- 1
src/core.c ファイルの表示

@ -5059,7 +5059,8 @@ static void MouseCursorPosCallback(GLFWwindow *window, double x, double y)
// GLFW3 Srolling Callback, runs on mouse wheel
static void MouseScrollCallback(GLFWwindow *window, double xoffset, double yoffset)
{
CORE.Input.Mouse.currentWheelMove = (float)yoffset;
if (xoffset != 0.0) CORE.Input.Mouse.currentWheelMove = (float)xoffset;
else CORE.Input.Mouse.currentWheelMove = (float)yoffset;
}
// GLFW3 CursorEnter Callback, when cursor enters the window

読み込み中…
キャンセル
保存