Beispiel #1
0
 void backFunc()
 {
     MainPanel.SetActive(true);
     SettingPage.SetActive(false);
     SinglePanel.SetActive(false);
     aud.PlayOneShot(ButtonSound);
 }
Beispiel #2
0
 public void ShowSinglePanel(bool y)
 {
     if (y)
     {
         BackToHomeButton.SetActive(false);
         ModesPage.SetActive(false);
         SinglePanel.SetActive(true);
         BackButton2.SetActive(true);
     }
     else
     {
         SinglePanel.SetActive(false);
         BackButton2.SetActive(false);
         BackToHomeButton.SetActive(true);
         ModesPage.SetActive(true);
     }
 }
Beispiel #3
0
 void moveSingleSceneFunc()
 {
     aud.PlayOneShot(ButtonSound);
     SinglePanel.SetActive(true);
     MainPanel.SetActive(false);
 }