TitleScreen.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
    void Update()
    {
        if (Input.GetButtonDown("Jump")) {
            Application.LoadLevel("Main");
        }
        /*
        if (GameObject.FindWithTag("Recode Button")) {
            Application.LoadLevel("Recode");
        }*/
    }
TitleScreen