コード例 #1
0
ファイル: BottomUI.cs プロジェクト: TrutzX/9Nations
 public void ShowPanelMessageError(string text)
 {
     OnMapUI.Get().bottomButtonText.color = Color.magenta;
     OnMapUI.Get().bottomButtonText.text = text;
     NAudio.PlayBuzzer();
 }
コード例 #2
0
ファイル: BottomUI.cs プロジェクト: TrutzX/9Nations
 public void ShowPanelMessage(string text)
 {
     OnMapUI.Get().bottomButtonText.color = Color.white;
     OnMapUI.Get().bottomButtonText.text = text;
 }
コード例 #3
0
 // Start is called before the first frame update
 void Start()
 {
     self     = this;
     bottomUI = new BottomUI();
 }