How do I turn my ball left in a 2D Unity game?
I am using
// Move the ball forward.
if (Input.GetKey (KeyCode.RightArrow)) {
player.AddForce (Vector2.right * playerSpeed);
}
But there is no such thing as Vector2.left
and I’ve been looking for hours and haven’t found a single thing. Please help!