Skip to content
Advertisement

My Score adds to much every single time rectangle collides with other rectangle

So I’m trying to make it so that if my rectangle collides with an another rectangle/Point, it will move the Point y position away from the rectangle and will add one to my score. The problem that I’m getting is that my score will add two instead of one evey single time my rectangle collides with my point https://gyazo.com/d9e4167f749f2a672fe7f713ce5bab2e. I have tried using a true and false statement to make it only add one instead of two to my score and that also did not work. I have also tried using a timer to tell it when to add and that did not work for me to.

This is what I tried

JavaScript

My full code

JavaScript

Advertisement

Answer

You change the y attribute of the object when you move it out of the visible area:

JavaScript

However you use the rect attribute for the collision test:

JavaScript

Hence, you need to update the rect attribute after changing the y attribute before the next collision test is performed:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement