Explorar el Código

Fix swipe gestures for web (#3151)

pull/3153/head
ubkp hace 1 año
cometido por GitHub
padre
commit
ffe4d36e0a
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/rcore.c

+ 4
- 0
src/rcore.c Ver fichero

@ -6131,6 +6131,10 @@ static EM_BOOL EmscriptenTouchCallback(int eventType, const EmscriptenTouchEvent
{
gestureEvent.pointId[i] = CORE.Input.Touch.pointId[i];
gestureEvent.position[i] = CORE.Input.Touch.position[i];
// Normalize gestureEvent.position[i]
gestureEvent.position[i].x /= (float)GetScreenWidth();
gestureEvent.position[i].y /= (float)GetScreenHeight();
}
// Gesture data is sent to gestures system for processing

Cargando…
Cancelar
Guardar