I have a 3D spaceship with a rigid body. I'm going for a control setup in which you press forward to accelerate and steer by moving the mouse. I have the following code set up:
if Input.is_action_pressed("ui_up")
$RigidBody.
I'm not sure which rigid body function to use. I know I don't want apply impulse. What should I use? (I want the spaceship to have acceleration and decceleration, and I want to have control over those values.
Thanks, :)