Trying to make my character walk backwards by getting a velocity vector in the opposite direction:
Direction = _character.transform.forward * -1;
Then applying it to my character’s rigidbody:
_rigidbody.AddForce(Direction, ForceMode.Impulse);
However, my character continues to walk forward.
What am I doing wrong?