Sei sulla pagina 1di 1

#pragma strict

var showMoreGui = false;


var showCredits = false;
function OnGUI () {
if (GUI.Button (Rect (650,300,100,20), "Open Menu"))
showMoreGui = true;
if (showMoreGui) {
(GUI.Button (Rect (650,350,100,20), "Play"));
(GUI.Button (Rect (650,400,100,20), "Options"));

// this is the code that doesn't work, the credits button shows, but does nothin
g on clicking.
{ if(GUI.Button (Rect (650,450,100,20), "Credits")){
showCredits = true;
}
if (GUI.Button (Rect (650,500,100,20), "Close"))
showMoreGui = false;
}}}

Potrebbero piacerti anche