Exemplo n.º 1
0
 // Update is called once per frame
 void Update()
 {
     counter++;
     if (counter == 600)
     {
         akaSceneManager.moveToSongSelect();
     }
 }
Exemplo n.º 2
0
    // Update is called once per frame
    void Update()
    {
        // Debug.Log(db.isLoaded);
        if ((Input.GetMouseButtonDown(0) || Input.touchCount > 0) && (!hasSwitched))
        {
            hasSwitched = true;

            //Temporary fix to make title and subtitle invisible
            Destroy(title);
            Destroy(subtitle);

            akaSceneManager.moveToSongSelect();
        }
    }