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/isCollisionEdgeRight.gml

6 lines
213 B

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