Path: blob/main/tests (don't work)/templates/collision detection
19186 views
function colliding(){
if (rect1.x < rect2.x + rect2.width && rect1.x + rect1.width > rect2.x && rect1.y < rect2.y + rect2.height && rect1.y + rect1.height > rect2.y) {
// collision detected!
}
}
setInterval(colliding,5);