raygui/README.md

36 lines
2.3 KiB
Markdown
Raw Normal View History

2016-06-15 20:33:20 +02:00
# raygui
2016-09-07 18:25:06 +02:00
raygui is simple and easy-to-use IMGUI header-only library.
2016-09-07 18:31:54 +02:00
raygui was inspired by [Unity IMGUI](https://docs.unity3d.com/Manual/GUIScriptingGuide.html) (immediate mode GUI API).
2016-09-07 18:25:06 +02:00
2016-09-07 18:52:39 +02:00
Initially raygui was conceived as an extra module for [raylib](https://github.com/raysan5/raylib) to create simple GUIs using a raylib graphic style (simple colors, plain rectangular shapes, wide borders, raylib standard font...). raygui was developed to be used on some raylib-based tools (without external dependencies, only raylib).
2016-09-07 18:25:06 +02:00
## history
2016-09-07 18:52:39 +02:00
raygui development started on December 2014 by two intenship students (Kevin Gato and Daniel Nicolas), guided by me (@raysan5) to create a simple raylib IMGUI module. On June 2015, library was mostly complete (including all planned controls) and work started into the styling possibilities for the library. Development on [rGuiStyler](https://github.com/raysan5/raygui/tree/master/tools/rGuiStyler) (project named `raygui_styler`) also started at that point but resources invested on the tool were quite limited and project didn't move much during the following year, most of the time was invested in [raylib](https://github.com/raysan5/raylib).
2016-09-07 18:25:06 +02:00
2016-09-09 01:32:31 +02:00
Finally, on the end of June 2016, project was picked up again and raygui 1.0 was released. During August 2016, raygui was used to develop rFXGen and [rGuiLayout](https://github.com/raysan5/raygui/tree/master/tools/rGuiLayout) tools. Currently, [rGuiStyler](https://github.com/raysan5/raygui/tree/master/tools/rGuiStyler) is also being updated an improved.
2016-09-07 18:25:06 +02:00
## notes on raygui 1.0
2016-09-07 18:52:39 +02:00
Officially, raygui 1.0 was published on June 2016, about one year and a half after its developmentment started.
2016-09-07 18:25:06 +02:00
## controls
Currently raygui provides the following controls:
- Label
- Button
- ToggleButton
- ToggleGroup
- ComboBox
- CheckBox
- Slider
- SliderBar
- ProgressBar
- Spinner
- TextBox
## acknowledgements
The following people has invested their time and effort into raygui project. Big thanks to them!
2016-09-07 18:31:54 +02:00
- [Kevin Gato](https://github.com/Gatonevermind) for working on initial development.
- Daniel Nicolas for working on initial development.
- [Sergio Martinez](https://github.com/anidealgift) for improving raygui and working on [rGuiStyler](https://github.com/raysan5/raygui/tree/master/tools/rGuiStyler) tool.