Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Red_Armadillo on Sun 23/11/2003 05:02:21

Title: The intro screen
Post by: Red_Armadillo on Sun 23/11/2003 05:02:21
How do I make a menu screen? I'm not sure.
Title: Re:The intro screen
Post by: MillsJROSS on Sun 23/11/2003 05:31:18
A menu screen, for what? Elaborate, please. Is it a menu screen the player will be able to go back to at will? What options will the menu screen have?

-MillsJROSS
Title: Re:The intro screen
Post by: Ishmael on Sun 23/11/2003 08:54:38
Either, mostly used for main menus, make a room with the menu buttons drawn to the background and use hotspots on them to make the action happen (like MRC main  menu), or crate a GUI and make it look like a pausemenu, with all the buttons you want, and just script like if (keycode == 27) ... in the on_key_press function to operate it with ESC (like the ESCmenu of MRC).
Title: Re:The intro screen
Post by: Red_Armadillo on Sun 23/11/2003 18:20:19
Yeah, where you start and save the game. Thanks