Well, you can do it from code. Physics.gravity returns you a Vector3 which is (0f , -9.81f, 0f) as default. You can change its parameters in code. For example if you want a gravity from top side of your game you can change Physics.gravity = new Vector(0f , 9.81f , 0f); as you can see just change default values sign.