Sfoglia il codice sorgente

Fix camera initial position (#4657)

pull/4661/head
Asdqwe 1 settimana fa
committed by GitHub
parent
commit
ad035edfac
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: B5690EEEBB952194
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. +3
    -0
      src/platforms/rcore_desktop_glfw.c

+ 3
- 0
src/platforms/rcore_desktop_glfw.c Vedi File

@ -1017,6 +1017,9 @@ void EnableCursor(void)
// Disables cursor (lock cursor)
void DisableCursor(void)
{
// Reset mouse position within the window area before disabling cursor
SetMousePosition(CORE.Window.screen.width, CORE.Window.screen.height);
glfwSetInputMode(platform.handle, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
// Set cursor position in the middle

Caricamento…
Annulla
Salva