-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.HideCursor
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Hides mouse cursor
None.
None.
raylib.InitWindow 800, 600, "Hide Cursor Demo"
raylib.HideCursor
while not raylib.WindowShouldClose
raylib.BeginDrawing
raylib.ClearBackground color.white
raylib.DrawText "Cursor is hidden", 10, 10, 20, color.black
raylib.EndDrawing
end while
raylib.CloseWindow