This is a screen of gg2:
http://media.pc.gamespy.com/media/724/7 ... 32717.html
Is it possible to do an interface with this quality in Irrlicht? If someone has already something similar what can you give some hints on the best way to do it?
Making GUIs like Galatic Civ II in Irrlicht
-
KittenGamer
One word ....
... images, and lots simple manipulation of a lot of 2d elements and mouse event checking. If you have ever written a skinning library you know what needs to be done, if not, then try making gaphical controls using windows standard API and you will understand what is needed. The reason I say use the standard windows WPI for practice is because it is easy to use once you understand the basics. I wrote a simple skin GUI library with one header file for win32 API that utilizes the technique you are looking for.
-
Guest
sure you can do that if you have the 2d art skills. Guis (proper game guis not windows style guis or irrgui) are just bitmap images with some underlying animation/detection/logic code - the world is your oyster and imagination if your limit.
Create it and use draw2dImage for your gui. If you want res independent guis then use emils sprite code and adapt it, in reality that is all it is a bunch of 2D sprites sitting in screen space (textured quads).
Create it and use draw2dImage for your gui. If you want res independent guis then use emils sprite code and adapt it, in reality that is all it is a bunch of 2D sprites sitting in screen space (textured quads).