Skip to content

Instantly share code, notes, and snippets.

@moon-goon
Created January 22, 2016 21:05
Show Gist options
  • Save moon-goon/afb0c44bdb7d0cec4519 to your computer and use it in GitHub Desktop.
Save moon-goon/afb0c44bdb7d0cec4519 to your computer and use it in GitHub Desktop.
void Update () {
//Debug.Log(Input.GetAxis("Horizontal"));
transform.Translate(Input.GetAxis("Horizontal") * Time.deltaTime, 0f, Input.GetAxis("Vertical") * Time.deltaTime);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment