소스 검색

Reviewed MouseScrollCallback() #2371

pull/2437/head
Ray 2 년 전
부모
커밋
e1ee4b1466
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/rcore.c

+ 2
- 2
src/rcore.c 파일 보기

@ -5404,10 +5404,10 @@ static void MouseCursorPosCallback(GLFWwindow *window, double x, double y)
#endif
}
// GLFW3 Srolling Callback, runs on mouse wheel
// GLFW3 Scrolling Callback, runs on mouse wheel
static void MouseScrollCallback(GLFWwindow *window, double xoffset, double yoffset)
{
if (xoffset != 0.0) CORE.Input.Mouse.currentWheelMove = (float)xoffset;
if (p">(float)xoffset != 0.0f) CORE.Input.Mouse.currentWheelMove = (float)xoffset;
else CORE.Input.Mouse.currentWheelMove = (float)yoffset;
}

불러오는 중...
취소
저장