Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to check if 2 sprites are touching js

function ImagesTouching(x1, y1, img1, x2, y2, img2) {
         if (x1 >= x2+img2.width || x1+img1.width <= x2) return false;   // too far to the side
         if (y1 >= y2+img2.height || y1+img1.height <= y2) return false; // too far above/below
         return true;                                                    // otherwise, overlap   
         }
 
PREVIOUS NEXT
Tagged: #check #sprites #touching #js
ADD COMMENT
Topic
Name
1+4 =