Sfoglia il codice sorgente

Understand mouse as touch in web

pull/107/head
raysan5 9 anni fa
parent
commit
fa78023aa4
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. +2
    -0
      src/core.c

+ 2
- 0
src/core.c Vedi File

@ -1793,6 +1793,8 @@ static void MouseCursorPosCallback(GLFWwindow *window, double x, double y)
// Register touch points position, only one point registered
gestureEvent.position[0] = (Vector2){ (float)x, (float)y };
touchPosition[0] = gestureEvent.position[0];
// Normalize gestureEvent.position[0] for screenWidth and screenHeight
gestureEvent.position[0].x /= (float)GetScreenWidth();
gestureEvent.position[0].y /= (float)GetScreenHeight();

Caricamento…
Annulla
Salva