3 using System.Collections.Generic;
12 Dictionary<string, List<Sticker>> _stickers =
new Dictionary<string, List<Sticker>>();
13 List<string> _shownStickers =
new List<string>();
20 public static Transform Canvas
22 get {
return _instance.transform; }
30 if (!_instance._stickers.ContainsKey(sticker.
Tag))
31 _instance._stickers.Add(sticker.
Tag,
new List<Sticker>());
33 _instance._stickers[sticker.
Tag].Add(sticker);
35 sticker.
Shown = _instance._shownStickers.Contains(sticker.
Tag);
43 _instance._stickers[sticker.
Tag].Remove(sticker);
51 if (_instance._shownStickers.Contains(tag))
54 _instance._shownStickers.Add(tag);
56 if (!_instance._stickers.ContainsKey(tag))
59 for (
int i = 0; i < _instance._stickers[tag].Count; i++)
60 _instance._stickers[tag][i].Shown =
true;
68 if (!_instance._stickers.ContainsKey(tag))
71 for (
int i = 0; i < _instance._stickers[tag].Count; i++)
72 _instance._stickers[tag][i].Shown =
false;
74 _instance._shownStickers.Remove(tag);
82 for (
int i = 0; i < _instance._shownStickers.Count; i++)
84 if (!_instance._stickers.ContainsKey(_instance._shownStickers[i]))
87 for (
int j = 0; j < _instance._stickers[_instance._shownStickers[i]].Count; j++)
88 _instance._stickers[_instance._shownStickers[i]][j].Shown =
false;
91 _instance._shownStickers.Clear();
static void HideAllStickers()
Hide all Stickers regardless of tag.
The manager class of all Sticker objects. Stickers are generic GUI objects used for various purposes ...
static void HideStickers(string tag)
Hide all Stickers for a given tag.
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
static void UnregisterSticker(Sticker sticker)
Unregister a sticker when a sticker is destroyed and not to be used any more (such as a player leavin...
bool Shown
Whether or not this sticker is shown at all. Used in conjunction with Tag system to enabled/disable t...
static void RegisterSticker(Sticker sticker)
Register a sticker with the manager so that the manager know about the stickers existence.
string Tag
A Tag used to identify groups of sticker. Eg, "player_names" could be the tag for LabelStickers attac...
static void ShowStickers(string tag)
Show all Stickers for a given tag.