shaky
Posted: Sat Mar 31, 2012 1:19 am
I am making a different version of Pong to kill time, but I used this one code
to make AI, and it works, but then there is the fact that my actor shakes while moving.
- Code: Select all
if(x>PongBall.x) x-=8;
else if(x<PongBall.x)x+=7;
to make AI, and it works, but then there is the fact that my actor shakes while moving.