raygui
raygui copied to clipboard
A simple and easy-to-use immediate-mode gui library
So, I have a variable called portalColor. I have a color selector that takes the portalColor as the argument, and the resulting color is assigned back to portalColor. When I...
It's currently not listing the files in the dialog itself.
Beside the font used, raygui supports multiple text-styling properties for controls text drawing. At this moment some text-styling properties can be configured by-control while some other properties are global for...
The basic behaviour of the `GuiButton` works as follow: - Firstly we check if the element is interactable (enabled, player isn't currently using sliders); - Then we get the current...
It's possible to toggle a checkbox by pressing down the mouse outside the checkbox, dragging the mouse over the checkbox, and releasing the mouse. It's generally preferable for checkboxes to...
https://github.com/raysan5/raygui/blob/45e7f967e62088b9fec02ac38c07d4b67d6466b0/src/raygui.h#L2025-L2071 Not sure if it's a bug or not. The documentation seems to have changed from the version used with the raylib-python-cffi, but those docs made it seem like it...
Currently rGuiStyler has issues rasterizing pixel fonts correctly, the rasterization grid does not always match evenly with the provided font file's vectorized pixel grid. As observed, a font designed for...
Compile and run the following code ```c #include #define RAYGUI_IMPLEMENTATION #include #undef RAYGUI_IMPLEMENTATION int main(void) { InitWindow(800, 500, "test"); SetTargetFPS(60); GuiEnable(); GuiUnlock(); Rectangle bounds = { 10, 40, 400, 150...
It'd be great if raygui supported rounded corners. I know it's not in raylib's branding to round corners, but users of raygui may want to have rounded corners in their...