|
From: Martin C. <cos...@wa...> - 2005-05-29 18:07:47
|
Frank Noschese wrote:
[]
> if (ball.pos.y <= ball.radius):
Make this
if (ball.pos.y <= ball.radius and ball.velocity.y < 0):
Otherwise, if the ball doesn't manage to get back above the floor in one
time step, it will stay down.
--
Martin
|