Exemplo n.º 1
0
 // 아래 버튼을 누른 경우
 public void HandleDown()
 {
     currentSettingChoice = currentSettingChoice.Next();
 }
Exemplo n.º 2
0
 void Start()
 {
     currentSettingChoice = SettingChoice.Animation;
     transform.gameObject.SetActive(false);
 }
Exemplo n.º 3
0
 // 위 버튼을 누른 경우
 public void HandleUp()
 {
     currentSettingChoice = currentSettingChoice.Previous();
 }