Example #1
0
 public void OnClickHaisou()
 {
     //荷物を送る
     if (gyoumu[pc] == 2 && o == false)
     {
         SelectView.SetActive(true);
         SmartPhone.SetActive(false);
         o = true;
     }
 }
Example #2
0
 public void SelectNo()
 {
     Debug.Log("在庫残り:" + zaiko[LC, LP - 1]);
     if (zaiko[LC, LP - 1] - LQ < 0)
     {
         Debug.Log("正しい選択だったようだ");
     }
     TejyunSE = true;
     SelectView.SetActive(false);
     SmartPhone.SetActive(true);
     SigiText.text = "次の手順を取得しよう";
 }
Example #3
0
 public void SelectYes()
 {
     zaiko[LC, LP - 1] -= LQ;
     if (zaiko[LC, LP - 1] < 0)
     {
         gamestatus = false;
     }
     Debug.Log("在庫残り:" + zaiko[LC, LP - 1]);
     TejyunSE = true;
     SelectView.SetActive(false);
     SmartPhone.SetActive(true);
     SigiText.text = "次の手順を取得しよう";
 }