Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Okay, so my paddle collision is working fine:

if(velo.y > 0){
            float t = ((position.y - radius) - paddle.position.y)/ velo.y;

            float ballHitX = position.x + velo.x * t;

            if(t <= 1.0){
                if(ballHitX >= paddle.position.x && ballHitX <= paddle.position.x + paddle.width){
                    velo.y = -velo.y;
                }
            }
        }

But my wall collision isn't. (the ball goes up when under the paddle, and down when not)

if(velo.y < 0){
                float t = ((position.y - radius) - (wall[2].y + wall[2].height))/ velo.y;

                if(t <= 1.0){
                velo.y = -velo.y;
                }
            }

How do I stop this error and make it so the ball bounces off the wall?

share|improve this question

1 Answer

up vote 1 down vote accepted

My guess is that you're flipping it twice.

if(wall) {
    velo = -velo;
}
if(paddle) {
    velo = -velo;
}

So, when you do your paddle, it goes like this:

am i hitting the wall? nope
am i hitting the paddle? yep! okay flip velocity

But when you do your wall, it goes like this:

am i hitting the wall? yep! okay flip velocity
am i hitting the paddle? yep! okay flip velocity

So because yu're hitting both conditions, it flips twice.

You need to determine whether or not you've flipped already to prevent double flippage.

share|improve this answer
That worked. Thank you! ^_^ – CyanPrime Mar 30 '11 at 3:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.