You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/isCollisionEdgeLeft.gml

6 lines
212 B

/// isCollisionEdgeLeft(offset)
if (collision_point(x, y + 2, oSolid, true, true) > 0
&& collision_line(x - argument0 - 4, y + 2, x - argument0, y + 2, oSolid, true, true) <= 0) {
return 1;
} else return 0;