Blog: 2025-02-17: Difference between revisions

From razwiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 17: Line 17:
Which I got in a very quine way...
Which I got in a very quine way...
[[File:Screen Shot 2025-02-17 at 1.34.41 PM.png||800px|frameless|center|alt=gamemaker window where I show_debug_message(@"...") the source code of my step function]]
[[File:Screen Shot 2025-02-17 at 1.34.41 PM.png||800px|frameless|center|alt=gamemaker window where I show_debug_message(@"...") the source code of my step function]]

Here's the gamemaker platforming tutorial of the day: https://gamemaker.io/en/tutorials/your-first-platformer

Latest revision as of 14:07, 17 February 2025

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...

gamemaker window where I show_debug_message(@"...") the source code of my step function

Here's the gamemaker platforming tutorial of the day: https://gamemaker.io/en/tutorials/your-first-platformer