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

10 lines
420 B

/// isCollisionUpLeft()
var yoff;
if (yVel <= 0) {
yoff = -1 + yVel * 2;
if (collision_line(x, y + collisionBoundsOffsetTopY, x, y + collisionBoundsOffsetTopY + yoff, oSolid, true, true) == noone) {
if (collision_line(x + collisionBoundsOffsetLeftX, y + collisionBoundsOffsetTopY, x + collisionBoundsOffsetLeftX, y + collisionBoundsOffsetTopY + yoff, oSolid, true, true) > 0) return 1;
}
}
return 0;