Hi.
I’m would like to know how I could make a 2D tank game (camera on top) move.
Indeed, I use rigidbody2D.AddRelativeForce(Vector2.up * speed); but there is a lot of inertia with the tank. How to delete this inertia ? I would like taht the tank move just like with transform.position += transform.up * speed * Time.deltaTime; (I can’t use this because of colliders)
Sorry, if I’m hard to understand, I’m not english native.