Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ UpdateAll()

static void Terraria.GameContent.UI.EmoteBubble.UpdateAll ( )
inlinestatic

Definition at line 44 of file EmoteBubble.cs.

45 {
46 lock (byID)
47 {
48 toClean.Clear();
50 {
51 item.Value.Update();
52 if (item.Value.lifeTime <= 0)
53 {
54 toClean.Add(item.Key);
55 }
56 }
57 foreach (int item2 in toClean)
58 {
59 byID.Remove(item2);
60 }
61 toClean.Clear();
62 }
63 }
static Dictionary< int, EmoteBubble > byID

References Terraria.GameContent.UI.EmoteBubble.byID, System.item, and Terraria.GameContent.UI.EmoteBubble.toClean.

Referenced by Terraria.Main.DoUpdate().