StartMenu

Hi,

Can any1 point me into the right direction, I search for a tutorial or something that would explain me how to create a simple Menue to start a game.

Thanks

I always reference the GUI Scripting Guide when dealing with anything I’ll be implementing in the OnGUI loop. I tend to use the Fixed Layout Mode when designing my menus as it allows me to precisely control what I want and where I want it. You should also take a look at simple state machines in order to implement your buttons/options handling with less fuss.

Keep in mind that OnGUI calls really suck up resources upon iOS. Try not to pile them up upon each other in order to keep your application running more smoothly.