Files
AM2R-Community-Updates/scripts/isCollisionUpLeft.gml
2020-12-22 20:54:55 -06:00

10 lines
420 B
Plaintext

/// 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;