Menu

Hello to everyone. Yesterday i found unity iphone and i already make my 1st scene. I think is a great program but needs a better explanation for newbies (like me).

So,now that i make my scene and get the user moves a ball with the accelerometer, i want to make a menu. A principal menu that appears when the user starts the app. Normally, i would build it with UIKit, but im not sure this time how to do it. If someone can guide me in the appropiate direction, will be great. I would prefer a way on doing this with UIKit because i have been working just with xcode primary language (Objective-C)

Thanks and sorry by my bad english

Ps: An english review will also be great
Ps2: The menu is an iPhone Menu

Please someone help me

Tip: posting iPhone questions in the iPhone Dev section is usually the better way to get help on such things.

I would suggest using GUIText and GUITextures as many have done on the iPhone already but that’s cause I don’t know much about UIKit. I’ll move your thread for you so you can hopefully get some good attention. Have a look around though as there are many threads about UI work on the iPhone. Good luck and have fun! :slight_smile:

The simplest menu for testing propose will be

//in c#
if(GUI.Button(new Rect(100,100,150,50),"Button Label"))
{
    //Do Stuff here if pressed
}