Liberi
An exergame built for kids with CP!
GUILibiCounter.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
9 public class GUILibiCounter : MonoBehaviour
10 {
11  static string _text;
12 
13  public static string Text
14  {
15  get
16  {
17  return _text;
18  }
19  set
20  {
21  _text = value;
22  _textElement.text = _text;
23  }
24  }
25 
26  static Text _textElement;
27 
28  void Awake()
29  {
30  _textElement = GetComponentInChildren<Text>();
31  GameClient.Instance.ConnectedToWorldServer += OnConnectedToWorldServer;
32  }
33 
34  void OnConnectedToWorldServer()
35  {
36  if (Game.LocalPlayerProfile.Inventory["Currency"].HasChild("libi"))
37  Text = Game.LocalPlayerProfile.Inventory["Currency"]["libi"].Value;
38  }
39 }
ConnectedToWorldServerHandler ConnectedToWorldServer
Event fired when the game client successfully connects to the world server.
Definition: GameClient.cs:61
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
A visual representation of the player's libi count. PlayerProfile uses the Text property to update th...
Main game client class.
Definition: GameClient.cs:16