cant stop movement

When I apply a force to an object, it wont stop moving when it lands on a ground. The friction is set to more then 1 on the static ground and the ball.

I shoot a ball in the air with applyforce , it behaves as expected but never slows down to a halt as it keeps moving forever.

I can use a workaround to slow down the ball.
[lua] physics.addBody ( ball, {bounce=0.3, density=2.0, friction=4.0, radius=16 })

ball :applyForce(100, -50, ball.x, ball.y)[/lua] [import]uid: 138547 topic_id: 26855 reply_id: 326855[/import]

Can you try adding this line;
[lua]ball.linearDamping = 0.2[/lua]
and let me know results, please? :slight_smile: [import]uid: 52491 topic_id: 26855 reply_id: 109034[/import]