Redirecting you to bearmacstudios.com.... BearMac Studios: Main Menu

Pages

Showing posts with label Main Menu. Show all posts
Showing posts with label Main Menu. Show all posts

Thursday, February 23, 2012

Disco Update video #1



Just and update for project Disco! Tell me what you guys think!

Sunday, February 19, 2012

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

Thursday, February 9, 2012

New Project!

Here's an extremely small demo of our first project. it's just a couple hours of work. I learned a lot by making this, and  I will be making a tutorial on the Time class in unity. Let me know what you think and throw requests out there if you can! Thanks!



Oh yeah and the sounds are all from freesounds.org
Great place to go for, well, free sounds! Go ahead and check that out and if you'd like anymore info post a comment on here or on youtube!

Monday, February 6, 2012

Tutorial Part 3




Here it is guys, check it out. I hope you all learned a little. I sure did. tell me where I should go next!

Quick Update

I'm going to be making another video tonight! It'll be up soon! but in the meantime, why don't you guys check out my channel. If you guys have any suggestions on where I should go next with this it'd be great to hear from the few of you (the very few). So comment here or on my channel, either way I will get it and I will reply ASAP! thanks guys!

YouTube :  TheMackNT

Thursday, February 2, 2012

Main Menu

Here's the main menu script. Take a look, ask any questions in the comments.

//mainmenu.js by mactinite 
//Simple main menu
var areaHeight : float= 200;
var areaWidth : float= 200;
var layoutCenter : float = 100;
var firstLevel : String = "First";
var buttonSpacing : float = 25;
var customSkin : GUISkin;
var layoutStyle : GUIStyle;
var textureTop : Texture2D;
function OnGUI(){
GUI.skin = customSkin;
GUILayout.BeginArea(Rect(Screen.width/2-areaWidth/2,Screen.height/2-areaHeight/2,areaWidth,areaHeight),layoutStyle);
GUILayout.Space(25);
GUILayout.Label(textureTop);
GUILayout.Space(buttonSpacing);
 if(GUILayout.Button("Start Game")){
 Application.LoadLevel(firstLevel);
 }
GUILayout.Space(buttonSpacing);
 if(GUILayout.Button("Quit")){
 Application.Quit();
 }
GUILayout.EndArea();
}

Tutorial Part 2


In this we start our script for the main menu on a blank scene. Everything from here on out will move pretty quickly and smoothly. Just wait for the next episode coming soon, and the pre-made MainMenu script will be uploaded shortly after this post. Feel free to use it, it's not too complex so you don't need to give credit, though it would be nice ;)

Tuesday, January 31, 2012

Intro To My First Tutorial!




I'll upload the full scripts after the second part, maybe a project file. Let me know what you guys think and what direction I should go next. Thanks!