I have a small spaceship that you can steer around. If you press a direction, I use AddForce to give the ship momentum.
The problem is, that it keeps adding force if you keep the button pressed, resulting in a very fast flying ship.
Is there a good way to limit the force added after a certain time? I have tried to limit it by only adding force if the ship is under a certain rigidbody.velocity thresshold, but that does not work very wel.