I have a game object that is flying around everywhere. I would like to slow it down, or speed it up with a button or two. I could just do something like:
sphere..AddForce(new Vector3(+1, +1, +1), ForceMode.Impulse);
but that is only effective in one direction. What do I need to do?
↧