8 [Script(ScriptRole.View)]
20 return _textElement.text;
25 if (_textElement == null)
27 _textElement.text = value;
33 protected override void Awake()
38 protected override void OnSpawn()
40 if (_textElement == null)
43 _textElement = _guiObject.GetComponentInChildren<Text>();
46 StartCoroutine(GetPlayerNameAsync());
50 protected override void Update()
55 protected override void OnDestroy()
61 if (_guiObject != null)
65 IEnumerator GetPlayerNameAsync()
67 bool doneNaming =
false;
68 string playerName =
"";
76 playerName = Game.GetPlayerNickname(
Sync.
GetOwner(
this));
81 yield
return new WaitForSeconds(0.5f);
A Sticker that shows floating text positioned on the attached object.
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
bool FillPlayerName
If true, the label will attempt to use the NickName of the player for which this component is attache...
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...