Blog: 2025-02-17
Jump to navigation
Jump to search
Here's that gamemaker snippet
if keyboard_check(vk_up) {
motion_add(image_angle, 0.05)
}
if keyboard_check(vk_left) {
image_angle += 5
}
if keyboard_check(vk_right) {
image_angle -= 5
}
Which I got in a very quine way...
Here's the gamemaker platforming tutorial of the day: https://gamemaker.io/en/tutorials/your-first-platformer
