I wonder how I can create a menu for a iOS game. I don’t know the script code I have to use. I have tried “function OnMouseEnter” but it doesn’t work ![]()
Thanks.
I wonder how I can create a menu for a iOS game. I don’t know the script code I have to use. I have tried “function OnMouseEnter” but it doesn’t work ![]()
Thanks.
use the gui class.
How? I’m a n00b at this TT
function OnGUI () {
GUILayout.Label ("Main Menu!");
if (GUILayout.Button ("Play!"))
Application.LoadLevel ("Name Of Game Scene");
if (GUILayout.Button ("Quit!"))
Application.Quit ();
}
Oh thanks, this is what I wanted!