Tagged Questions
5
votes
4answers
119 views
Bouncing Ball logics
I've got a ball which bounces of walls. This bounce is simple, i just do this, ( code snippet )
if ( x - moveSpeed < 0 ) // Ball hit left wall
xVel *= -1;
However i also got a rectangle ...
3
votes
9answers
1k views
Bouncing ball not conforming to Conservation of Energy Rule!
I am currently busy on writing a small ball physics engine for my programming course in Win32 API and c++. I have finished the GDI backbuffer renderer and the whole GUI (couple of more things to ...
2
votes
3answers
689 views
2D Gaming - How to reflect a ball off the bat?
Hi there
I am pretty new to XNA & game dev and am stuck at ball reflection. My ball is reflecting once it hits the bat, but only in one angle, no matter which angle the bat is at.
Here's the ...
0
votes
1answer
158 views
Simple ball paddle collision problem !
there is a ball UIImage and Paddle UIImage...
the collision is working fine when the ball hits the top and bottom sides...but
if it hits the small sides of the paddle ..the ball passes through it ...