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

◆ DrawBackGore()

void Terraria.Main.DrawBackGore ( )
inlineprivate

Definition at line 60249 of file Main.cs.

60250 {
60251 if (!drawBackGore)
60252 {
60253 return;
60254 }
60255 drawBackGore = false;
60256 if (ignoreErrors)
60257 {
60258 try
60259 {
60261 return;
60262 }
60263 catch (Exception e)
60264 {
60265 TimeLogger.DrawException(e);
60266 return;
60267 }
60268 }
60270 }
static bool drawBackGore
Definition Main.cs:387
static bool ignoreErrors
Definition Main.cs:742
void DrawGoreBehind()
Definition Main.cs:20333

References Terraria.Main.drawBackGore, Terraria.TimeLogger.DrawException(), Terraria.Main.DrawGoreBehind(), and Terraria.Main.ignoreErrors.

Referenced by Terraria.Main.DoDraw_WallsTilesNPCs().