-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.IsMouseButtonReleased
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Check if a mouse button has been released once
| Parameter | Default Value | Note |
|---|---|---|
| button |
| Condition | Return Value |
|---|---|
| (always) | number |
raylib.InitWindow 800, 600, "Mouse Button Released Demo"
msg = "Click and release the left button"
while not raylib.WindowShouldClose
if raylib.IsMouseButtonReleased(raylib.MOUSE_BUTTON_LEFT) then msg = "Left button released!"
raylib.BeginDrawing
raylib.ClearBackground color.white
raylib.DrawText msg, 10, 10, 20, color.black
raylib.EndDrawing
end while
raylib.CloseWindow