Search tutorials
Pretty easy, we're going to do the same thing for the boxesOnScreen array, but we'll also add our collision detection to this for loop.
for (j in boxesOnScreen) {
this[boxesOnScreen[j]]._y -= 7;
if(this[boxesOnScreen[j]]._y < 0) {
this[boxesOnScreen[j]].removeMovieClip();
boxesOnScreen.splice(j, 1);
}
for(k in ballsOnScreen) {
if (this[boxesOnScreen[j]].hitTest(this[ballsOnScreen[k]])) {
this[boxesOnScreen[j]].removeMovieClip();
boxesOnScreen.splice(j, 1);
this[ballsOnScreen[k]].removeMovieClip();
ballsOnScreen.splice(k, 1);
}
}
}
Code Explanation
Up to the second for..loop everything is the same as the last code snippet that made the ball move, here we are just making the box move and checking if it has gone off the screen. In the second for..loop we'll run our hitTests between each box instance in the boxesOnScreen array and each ball instance in the ballsOnScreen array. If any of the instances collide we remove that instance using removeMovieClip, and we update the arrays.
| » Level Advanced |
|
Added: 2001-06-07 Rating: 6.97 Votes: 186 |
| » Author |
| No details available. |
| » Download |
| Download the files used in this tutorial. |
| Download (4 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!