Three Games in one

Hi all…
I made 3 different games, and I want to merge them in one with a main menu that allow you to select with one you want to play…
I tried a lot to do it but I couldn’t…
I was wandering If you can help me…

Thanks for all,

Abdo

1 Answer

1

When you build your game, add all the scenes/games and assign them a number.

Then in your gui,

function OnGUI () {
	if (GUI.Button (Rect (10,10,150,100), "Game 1")) {
		Application.LoadLevel(1);
	}
}

and same for all others