Liberi
An exergame built for kids with CP!
GUIGameLobbyPanel.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 using System.Net;
5 
6 public class GUIGameLobbyPanel : MonoBehaviour
7 {
8  public string DialogText
9  {
10  get { return _dialogText.text; }
11  set { _dialogText.text = value; }
12  }
13 
14  public string PlayerCountText
15  {
16  get { return _playerCountText.text; }
17  set { _playerCountText.text = value; }
18  }
19 
20  public Sprite StickerSprite
21  {
22  get { return _stickerImage.sprite; }
23 
24  set
25  {
26  _stickerImage.sprite = value;
27  _stickerImage.SetNativeSize();
28  }
29  }
30 
31  public IPEndPoint EndPoint;
32 
33  Text _dialogText;
34  Text _playerCountText;
35  Image _stickerImage;
36  Outline _outline;
37 
38  public void Init ()
39  {
40  _dialogText = transform.FindChild("dialog_text").GetComponent<Text>();
41  _playerCountText = transform.FindChild("player_count_text").GetComponent<Text>();
42  _stickerImage = transform.FindChild("sticker").GetComponent<Image>();
43  _outline = GetComponent<Outline>();
44  }
45 
46  public void Select ()
47  {
48  _outline.enabled = true;
49  }
50 
51  public void Deselect ()
52  {
53  _outline.enabled = false;
54  }
55 }