예제 #1
0
 public void CloseDown()
 {
     Panel.SetActive(false);
     SettingButton.SetActive(true);
     StartButton.SetActive(true);
     YarikataButton.SetActive(true);
 }
예제 #2
0
 public void SettingDown()
 {
     Panel.SetActive(true);
     SettingButton.SetActive(false);
     StartButton.SetActive(false);
     YarikataButton.SetActive(false);
     speed     = PlayerPrefs.GetFloat("speed", 0.04f);
     BGM.value = PlayerPrefs.GetFloat("BGMVol", 0);
     SE.value  = PlayerPrefs.GetFloat("SEVol", 0);
     if (speed == 0.04f)
     {
         Standard.Select();
     }
     else if (speed == 0.03f)
     {
         High.Select();
     }
     else
     {
         Slow.Select();
     }
 }