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

◆ UpdateFrame()

static bool Terraria.ModLoader.EmoteBubbleLoader.UpdateFrame ( EmoteBubble emoteBubble)
inlinestatic

Definition at line 113 of file EmoteBubbleLoader.cs.

114 {
115 bool result = true;
116 foreach (GlobalEmoteBubble globalEmoteBubble in globalEmoteBubbles)
117 {
118 result &= globalEmoteBubble.UpdateFrame(emoteBubble);
119 }
120 if (!result)
121 {
122 return false;
123 }
124 return emoteBubble.ModEmoteBubble?.UpdateFrame() ?? true;
125 }
static readonly List< GlobalEmoteBubble > globalEmoteBubbles

References Terraria.ModLoader.EmoteBubbleLoader.globalEmoteBubbles.

Referenced by Terraria.GameContent.UI.EmoteBubble.Update().

+ Here is the caller graph for this function: