What is the best way to make a rigid body object move. I have been using - transform.Translate (0,0,0); - but when I use this it stops the falling motion or gravity of the object. What would be the best way to control movement.
Thanks
What is the best way to make a rigid body object move. I have been using - transform.Translate (0,0,0); - but when I use this it stops the falling motion or gravity of the object. What would be the best way to control movement.
Thanks
You can either use rigidbody.AddForce or rigidbody.MovePosition functions.