From a12bc488f424bb18c4c0b3bde19db7d909cedd12 Mon Sep 17 00:00:00 2001 From: Mike Thielen Date: Sat, 22 Mar 2025 21:30:00 -0400 Subject: [PATCH] added control and alt checking --- src/raylib.h | 2 ++ src/rcore.c | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/src/raylib.h b/src/raylib.h index 7919db775..5f7d2000e 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1177,6 +1177,8 @@ RLAPI void PlayAutomationEvent(AutomationEvent event); // Play a reco RLAPI bool IsKeyPressed(int key); // Check if a key has been pressed once RLAPI bool IsKeyPressedRepeat(int key); // Check if a key has been pressed again RLAPI bool IsKeyDown(int key); // Check if a key is being pressed +RLAPI bool IsControlKeyDown(); // Check if any control key is being pressed +RLAPI bool IsAltKeyDown(); // Check if any alt key is being pressed RLAPI bool IsKeyReleased(int key); // Check if a key has been released once RLAPI bool IsKeyUp(int key); // Check if a key is NOT being pressed RLAPI int GetKeyPressed(void); // Get key pressed (keycode), call it multiple times for keys queued, returns 0 when the queue is empty diff --git a/src/rcore.c b/src/rcore.c index 864c54b0f..02e22a97b 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -3184,6 +3184,16 @@ bool IsKeyDown(int key) return down; } +bool IsControlKeyDown() +{ + return IsKeyDown(KEY_LEFT_CONTROL) || IsKeyDown(KEY_RIGHT_CONTROL); +} + +bool IsAltKeyDown() +{ + return IsKeyDown(KEY_LEFT_ALT) || IsKeyDown(KEY_RIGHT_ALT); +} + // Check if a key has been released once bool IsKeyReleased(int key) {