-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.IsMouseButtonPressed
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Check if a mouse button has been pressed once
| Parameter | Default Value | Note |
|---|---|---|
| button |
| Condition | Return Value |
|---|---|
| (always) | number |
raylib.InitWindow 800, 600, "Mouse Button Pressed Demo"
count = 0
while not raylib.WindowShouldClose
if raylib.IsMouseButtonPressed(raylib.MOUSE_BUTTON_LEFT) then count = count + 1
raylib.BeginDrawing
raylib.ClearBackground color.white
raylib.DrawText "Left clicks: " + count, 10, 10, 20, color.black
raylib.EndDrawing
end while
raylib.CloseWindow