user1468303
user1468303

Reputation: 51

Unity 3d Menu's

New to unity3d and I've been asked to participate in developing a game in it. I'm in charge of the menus of the game. Does anybody know how we can make menus in the compiled window of the game. Not menus with the GUI library but standard window menus like File,Edit,Options etc. Thanks in advance!

Upvotes: 1

Views: 205

Answers (1)

axwcode
axwcode

Reputation: 7824

In games the menus are usually part of the game not a windows-form. You normally have the menu scene with buttons like Options, Exit, Credits, and Play.

My friends and I built this game in a 24 hour hackathon; you can see an example of what the menu looks like at the start of this YouTube video: ClockWork.

I remember having a lot of fun making that 3D menu. You have options, you could make a simple 2D menu with textures or use 3D. You can start by reading the GUI.Button API. You can also add a song to your menu. I also suggest you look at examples of menus for other games.

Upvotes: 1

Related Questions