Please turn JavaScript on

GameMaker Community

follow.it gives you an easy way to subscribe to GameMaker Community's news feed! Click on Follow below and we deliver the updates you want via email, phone or you can read them here on the website on your own news page.

You can also unsubscribe anytime painlessly. You can even combine feeds from GameMaker Community with other site's feeds!

Title: GameMaker Community

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  8.36 / day

Message History

Since im gonna be starting over with my gamedev stuff, How much basic math should a beginner know about before fully getting into gamedev?

Read full story
I programmed the bullets, but they all flew in the wrong direction—absolutely all the bullets I created.

This script is only for one button.

Please help me.

Read full story
I'm trying to stop the player walking animation whilist pressing both left and right, but the animation slows down as I change directions while walking, only speed restarts when I'm not pressing anything.


Obj Player step:
GML: xscale = approach(xscale, 1, 0.03); yscale = approach(yscale, 1, 0.03); //restart animation if ...

Read full story
Hi,

I'm trying to create a custom path that allows an object to move between two points.
I want to use a layer with tiles to know where are the walls.
So far, nothing special.

The difficulty is that I want to use special tiles that can only be crossed in a specific direction:
Tile 1: Wall (cannot be crossed)
Tile 2: Can only be c...

Read full story
I made a system that tracks the steps of the player, once the player takes enough steps, the npc will start following their previous steps, the issue with this is that if the framerate is higher or the framerate is lower, the follower will get slower or faster

Relevant code in the player's create event:
GML: global.krismovements = [] kris...

Read full story