Jihl
Member
Hey there,
I'd like to use place_meeting with an object who's got a rhombus as a collision mask

But for some reason it doesn't take the collision with the perfect shape


the red one means it's colliding, and the second says it's not colliding
and here's the simple code I have for the object
I'd like to use place_meeting with an object who's got a rhombus as a collision mask

But for some reason it doesn't take the collision with the perfect shape


the red one means it's colliding, and the second says it's not colliding
and here's the simple code I have for the object
GML:
/// step event
if (place_meeting(x, y, o_building)) {
can_be_built = false;
}
else {
can_be_built = true;
}
Last edited: