Non Addititive forces in the Physics Engine & Move to & Accellerate to Functions

Currently forces are additive in the Physics engine. It would be nice to have an option to make it not so. Instead of making the body static and then applying the new force. [import]uid: 8192 topic_id: 1837 reply_id: 301837[/import]

Forces are additive in Box2D because they are additive in reality :slight_smile:

However, if you’re going for more of an “arcade” effect, you should be able to simulate non-additive motion by zeroing out the current motion before applying your next force:

object:setLinearVelocity( 0, 0 )  
object.angularVelocity = 0  

For example, “SimplePool” does this to stop the cueball whenever the player is trying to shoot it again. [import]uid: 3007 topic_id: 1837 reply_id: 5628[/import]