Liberi
An exergame built for kids with CP!
LabelSticker.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
8 [Script(ScriptRole.View)]
9 public class LabelSticker : Sticker
10 {
14  public bool FillPlayerName;
15 
16  public string Text
17  {
18  get
19  {
20  return _textElement.text;
21  }
22 
23  set
24  {
25  if (_textElement == null)
26  OnSpawn();
27  _textElement.text = value;
28  }
29  }
30 
31  Text _textElement;
32 
33  protected override void Awake()
34  {
35  base.Awake();
36  }
37 
38  protected override void OnSpawn()
39  {
40  if (_textElement == null)
41  {
42  base.OnSpawn();
43  _textElement = _guiObject.GetComponentInChildren<Text>();
44 
45  if (FillPlayerName)
46  StartCoroutine(GetPlayerNameAsync());
47  }
48  }
49 
50  protected override void Update()
51  {
52  base.Update();
53  }
54 
55  protected override void OnDestroy()
56  {
57  base.OnDestroy();
58 
59  // Check if the GUI Object is null before destroying it.
60  // In the case of Scene unloading, the GUI Object can actually be destroyed before it's owner.
61  if (_guiObject != null)
62  Destroy(_guiObject);
63  }
64 
65  IEnumerator GetPlayerNameAsync()
66  {
67  bool doneNaming = false;
68  string playerName = "";
69 
70  Text = "...";
71 
72  while (!doneNaming)
73  {
74  try
75  {
76  playerName = Game.GetPlayerNickname(Sync.GetOwner(this));
77  doneNaming = true;
78  }
79  catch { }
80  if (!doneNaming)
81  yield return new WaitForSeconds(0.5f);
82  }
83 
84  Text = playerName;
85  }
86 }
A Sticker that shows floating text positioned on the attached object.
Definition: LabelSticker.cs:9
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
Definition: Sync.Static.cs:263
bool FillPlayerName
If true, the label will attempt to use the NickName of the player for which this component is attache...
Definition: LabelSticker.cs:14
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
Definition: Sticker.cs:10
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13