diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-04-06 22:52:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-06 22:52:08 +0100 |
| commit | 2bb20a2c1c4aeeef2ebbfe33982c1cb38dbc294f (patch) | |
| tree | 3329020854ef4637fe50e16daa6ecc5dc116f3f7 | |
| parent | 352d526b94c91fbfe596cdbcf168d35e39271fd1 (diff) | |
| parent | d83532d29e5503c3649fe9bb28a42b4ab7cb31e2 (diff) | |
Merge pull request #3388 from laytan/fix-raygui-symbol
fix raygui `GuiFade` being renamed to `GuiSetAlpha`
| -rw-r--r-- | vendor/raylib/raygui.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/raylib/raygui.odin b/vendor/raylib/raygui.odin index 726377dd6..41a4250a1 100644 --- a/vendor/raylib/raygui.odin +++ b/vendor/raylib/raygui.odin @@ -251,7 +251,7 @@ foreign lib { GuiDisable :: proc() --- // Disable gui controls (global state) GuiUnlock :: proc() --- // Unlock gui controls (global state) GuiIsLocked :: proc() -> bool --- // Check if gui is locked (global state) - GuiFade :: proc(alpha: f32) --- // Set gui controls alpha (global state), alpha goes from 0.0f to 1.0f + GuiSetAlpha :: proc(alpha: f32) --- // Set gui controls alpha (global state), alpha goes from 0.0f to 1.0f GuiSetState :: proc(state: c.int) --- // Set gui state (global state) GuiGetState :: proc() -> c.int --- // Get gui state (global state) |