Showing posts with label tutorial. Show all posts
Showing posts with label tutorial. Show all posts

Friday, March 4, 2011

How to make a Cooool main menu

jayage2 Wanted to know how to make a cool main menu. Here is a video for you guys on how to make a cool main menu with a moving background, and glowing buttons. Enjoy!  

Sunday, February 27, 2011



This is a video tutorial for Steve. (And all of you other people) I have the download for this here: http://www.yoyogames.com/games/165801-zombie-tutoiral
There you go steve_s!

I forgot to say that there is Shotgun in this video. You will learn how to make a Shotgun people!!!!

Saturday, February 19, 2011

How to double jump

In this video tutorial, you will learn how to double jump. (My voice was kind of poor. But you should still be able to understand me.)

If you have any questions PM me or leave me a comment.

Friday, January 28, 2011

How to make your car turn. (really cool!)


This is really cool! In this tutorial you will learn how to make your car turn and accelerate.
Here are the codes I used:
Code used in keyboard up event:

{
  if (speed < 8) speed = min(8,speed+1.6);
}
Code used in the keyboard down event:

{
  if (speed > -8) speed = max(-8,speed-1.6);
}
These are the really in portent codes that we used in the video. You should play around with the values a little to make them fit your purposes. These codes can be used in many many ways. If you have questions just let me know.

Thursday, January 27, 2011

How to add health to your game.



In this video, you will learn how to add health and a health bar to your game.
Here is the code that I used to draw the health bar.
Code:
draw_sprite_stretched(HEALTH,0,x-5,y-14,hp,6)