Code: Select all
function CheckCollision(x1,y1,w1,h1, x2,y2,w2,h2)
return x1 < x2+w2 and
x2 < x1+w1 and
y1 < y2+h2 and
y2 < y1+h1
end
Code: Select all
function CheckCollision(x1,y1,w1,h1, x2,y2,w2,h2)
return x1 < x2+w2 and
x2 < x1+w1 and
y1 < y2+h2 and
y2 < y1+h1
end
That's a bad idea. The built-in polygon/collision handling means you need to convert the whole program to use love.physics, and that changes the approach of the code radically, meaning basically a rewrite. It may also bring with it some unexpected side effects of using love.physics. Often, custom simple physics are better than using love.physics, especially if all you need is AABB collisions.
Users browsing this forum: Ahrefs [Bot] and 3 guests