Skip to content

raylib.PollInputEvents

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Register all input events

Parameters

None.

Return value

None.

Notes

Example

// In a custom loop that does not use BeginDrawing/EndDrawing:
while not raylib.WindowShouldClose
    raylib.PollInputEvents
    // process input here
end while

Clone this wiki locally