Hi everyone! I'm trying to detect the moment when player lands on a platformer game but I don't understand why my code isn't working.
// We've just landed?
if place_meeting(x, y + 1, o_solid) and !place_meeting(x, yprevious + 1, o_solid)
{
show_debug_message("Landed");
}
This should work...