Bit late but probably ready!
Hello!
This is my first Ludum Dare Gamejam. I will be using: GameMaker Studio 2 or Tic-80 Aseprite Notebook Bosca Ceoil or SunVox
I am still thinking about what game I will make.
Good luck everyone!
Hello!
This is my first Ludum Dare Gamejam. I will be using: GameMaker Studio 2 or Tic-80 Aseprite Notebook Bosca Ceoil or SunVox
I am still thinking about what game I will make.
Good luck everyone!
Hello,
I am making a Rythm platformer game in GMS2.
Basically my player object falls down by 1 pixel. It looks horrible. Could anyone help?
Code:
Problem:

Hello,
I am about to publish my game an dI have encountered one problem.
When I collide, my character bumps down.
https://youtu.be/7QqUVCK6UQ
Collision code: (Gamemaker 2)
if (!placemeeting(x, y+1, objcollision)) {
vsp += grv;
} else {
if (inputjump) {
vsp = -3;
}
}
if (placemeeting(x+hsp,y, objcollision)) { while (!placemeeting(x+sign(hsp),y, objcollision)){ x += sign(hsp); } hsp = 0; } if placemeeting(x,y+vsp,objcollision) { while !placemeeting(x,y+sign(vsp),objcollision) { y += sign(vsp) ; } vsp = 0; } y += floor(vsp); x += hsp /* vsp - vertical speed hsp - horizontal speed floor(vsp) - stops player from falling 1px down. */
Hey!
My name is Dovydas. I am 14 year old game developer and pixel artist. In this Ludum Dare I am going to make a game alone as always. Here are the tools I am going to be using {
Game Engine:
GameMaker Studio 2. Still not monogame this time. I still lack skills in it.
Graphics:
Aseprite for Pixel Art
Music:
Sunvox or Garage Band or Bosca Ceoil.
Project Management:
Trello.
Keeping track of progress:
My website:
https://dovai.net/
I am going to write daily blogs.
Also, I will be making a TimeLapse!
Publishing the game:
itch.io
}
If you are interested in my progress, Give me a follow:
Instagram:
@ihelp_official
Twitter:
@dovker
Youtube:
iHelp
Website and Blog:
https://dovai.net/
Good luck Jamming!
Hey, fellow gamemakers!
I Have a tiny problem. When I use Mouse Pressed and Mouse Released for certain buttons, mouse release doesn't always work.
Could anyone help?
Last click has that problem.