• Register

Game Hammer is a tool which can help you create your own games. It's very compatible with Game Maker 6.1, but cheapest ;) I release this software under shareware licence, which means you can use it however you like as long as you can. If you would buy a full version, you can make a donation. GH it's full compatible with Game Maker 6.1 and GML 6.1. If you have experience in this program, you can try GH. It's cheapest ;) Features, both for free and registered version: Backgrounds, sprites & images Animated graphics Rotate sprites Modify resources at run-time - sprites, backgrounds, paths etc. Particle effects 3D graphics Full-screen anti-aliasing 3D hardware acceleration Off-screen surfaces - for rendering dynamic textures Interstitial screens - videos Font control Sound effects & music itp.

Post tutorial Report RSS Very basic movement in code

This tut will show you how make basic movement in code. Remeber, you always can use Quick Box to do this!

Posted by on - Basic Client Side Coding

Hello! I see you to wants to look how the Game Hammer work ;)
This ain't a complicated software. Really, making the games in it is very simple. You don't need to buy full version, if you like ads. Game Hammer still all features in non-registered version. I think, time to began.


Click twice to GH icon. Then you see app window on whole desktop. This is tool which you make your first game. What you need in first step? Of course:

  • Sprites (better lower than 100x100)
  • Some background

Good, now you click Add Sprite. On list will appear: sprite0. Click this and press Load.
Select one of your files and press Save. Now you select Backgrounds
Add background -> background0 -> Load -> Save.

Now we just need only object Select object0 and in event STEP paste this code:

if (keyboard_check(vk_right)) { x+=4 }
if (keyboard_check(vk_left)) { x-=4 }
if (keyboard_check(vk_up)) { y-=4 }
if (keyboard_check(vk_down)) { y+=4 }

Click Save.

Now you just can press Make stand-alone *.exe. If everything is all right, you'll see your sprites move by keyboard.

Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: