mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-01 20:28:15 +00:00
Merge pull request #3388 from laytan/fix-raygui-symbol
fix raygui `GuiFade` being renamed to `GuiSetAlpha`
This commit is contained in:
Vendored
+1
-1
@@ -251,7 +251,7 @@ foreign lib {
|
|||||||
GuiDisable :: proc() --- // Disable gui controls (global state)
|
GuiDisable :: proc() --- // Disable gui controls (global state)
|
||||||
GuiUnlock :: proc() --- // Unlock gui controls (global state)
|
GuiUnlock :: proc() --- // Unlock gui controls (global state)
|
||||||
GuiIsLocked :: proc() -> bool --- // Check if gui is locked (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)
|
GuiSetState :: proc(state: c.int) --- // Set gui state (global state)
|
||||||
GuiGetState :: proc() -> c.int --- // Get gui state (global state)
|
GuiGetState :: proc() -> c.int --- // Get gui state (global state)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user