I made the character controller to a sphere and I wanted the script to move around but I don't now how. if You can send the script to me by this email : shkarface@hotmail.com
1 Answer
1You should try look at a few tutorials first! Like these: http://vimeo.com/2827541 They gave me a good start.
anyway Try this:
void Update()
{
if (Input.GetAxis("Vertical") != 0)
{
transform.position += transform.forward;
}
}
Attach this script to your Gameobject and press w or arrow up in playmode!
Please redefine your question... I don't understand it...
– AVividLight