I made a simple car with wheel colliders. I'm trying to move the car with:
rb.AddRelativeForce(Vector3.forward * speed);
It's not moving, because of the wheel colliders. I know how to move the car with the wheel colliders, but I want to move it with AddRelativeForce. How can I use wheel colliders and AddRelativeForce?
↧