Here's the video demo of our new project! Check it out!
Showing posts with label Pause Menu. Show all posts
Showing posts with label Pause Menu. Show all posts
Sunday, February 19, 2012
Video Demo!
Labels:
3D,
Development,
Disco,
Main Menu,
Pause,
Pause Menu,
Scripting,
Unity,
UnityScript
Saturday, February 18, 2012
Pre-demo Update
So before I showed a demo video I wanted to add more to the game. So here's just a brief overview of what I added:
- Footstep Sounds (Randomly played from array)
- Jump Sounds(Random)
- Rushing wind effect when falling at high speeds
- Title Menu
- Pause Menu
- Reset Level button
- Better power-up pick up physics
- Last but not least, an objective!
So those are just a few of the things I have added over the past couple of hours, hopefully sometime during the week I can get a little demo uploaded to my youtube, but for now keep an eye out for it on my youtube channel!
Thanks,
-Hunter
Labels:
About,
Development,
Disco,
General,
Main Menu,
Pause,
Pause Menu,
Scripting,
UnityScript
Thursday, February 16, 2012
Pause Menu Tutorial!
Here it is guys! I'll be uploading our Demo here soon, so keep an eye out for that! Thanks to all of you that watch!
Pause Menu Script!
Here's a script that's extremely similar to the main menu script. It's for the pause menu in the tutorial that's on YouTube right now!
var menuHeight:float=500;
var menuWidth:float=500;
var buttonSpacing:float=25;
var mainMenu: String = "MainMenu";
var titleTexture:Texture2D;
var customSkin:GUISkin;
var customStyle:GUIStyle;
function OnGUI(){
GUI.skin = customSkin;
GUILayout.BeginArea(Rect(Screen.width/2-menuWidth/2,Screen.height/2-menuHeight/2,menuHeight,menuWidth),customStyle);
GUILayout.Space(50);
GUILayout.Label(titleTexture);
GUILayout.Space(buttonSpacing);
if(GUILayout.Button("Main Menu")){
Application.LoadLevel(mainMenu);
}
GUILayout.Space(buttonSpacing);
if(GUILayout.Button("Exit to Desktop")){
Application.Quit();
}
GUILayout.Space(buttonSpacing);
GUILayout.EndArea();
}
Subscribe to:
Posts (Atom)