Possible Duplicate:
What C++ GUI library can you suggest?
I am creating a simple 2 dimensional GUI for an RPG game. It will be pretty simple and will contain a few windows a chat box. Does anyone have any suggestions for UI code to use?
I am creating a simple 2 dimensional GUI for an RPG game. It will be pretty simple and will contain a few windows a chat box. Does anyone have any suggestions for UI code to use? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
There are Flash based GUI systems too. There's the open-source projects GameSWF and Hikari for . There are commercial products too - Scaleform |
|||
|
|
|
The Ogre3D team recommends both Crazy Eddie's GUI System and MyGui, so they might be worth checking out. |
|||
|
|
|
For really, really, really simple GUIs, I recommend rolling your own IMGUI library. If all you need are buttons and sliders, it's dead simple. If you need anything more, I recommend looking at some other GUI libraries, though.
|
|||
|
|
|
I have had a positive experience with Guichan. It has an SDL back-end (as well as others) and a good set of basic widgets. Some highlights:
If you haven't already, check it out. I have used it in the past and plan on using it for my next project. |
|||
|
|