My kid was trying to work through the "Make Your First Platformer Game" tutorial on the GM website and it doesn't seem to be executing the scripts related to either the Create Event or Step Event. I've checked his work up to the point he's at and it's what the tutorial has said to do. I'm not very familiar with GM yet, but I did put some simple debug code in the scripts at one point and got nothing in the log. The scripts are super-short, so I'll just paste them both as plain text below . Any help would be appreciated. Thanks!
https://gamemaker.io/en/tutorials/your-first-platformer
/// @Create Event
// You can write your code in this editor
window_set_size(1280, 720);
xsp=0;
ysp=0;
/// @Step Event
// You can write your code in this editor
ysp += 0.1;
xsp = 0;
if keyboard_check(vk_left)
{
xsp = -1;
}
if keyboard_check(vk_right)
{
xsp = +1;
}
if place_meeting(x, y+1, oSolid)
{
ysp = 0;
if keyboard_check(vk_up)
{
ysp = -2;
}
}
move_and_collide(xsp, ysp, oSolid);