I am trying to simulate physics through rapier for the car below, but its sliding out of control, even with no external forces being applied to it.
Friction for both the ground and the wheels of the model are set like so:
Friction { coefficient: (1000.0), combine_rule: (CoefficientCombineRule::Average) },
there is no damping(I assumed friction with the ground would stop sliding?)
but the model is sliding out of control like its on ice. What could I be missing?