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

◆ RenderTime()

static void Terraria.TimeLogger.RenderTime ( int renderType,
double timeElapsed )
inlinestatic

Definition at line 238 of file TimeLogger.cs.

239 {
240 if (renderType >= 0 && renderType < renderTimes.Length)
241 {
242 UpdateTime(renderTimes, renderType, timeElapsed);
243 }
244 }
static void UpdateTime(TimeLogData[] times, int type, double time)
static TimeLogData[] renderTimes
Definition TimeLogger.cs:42

References Terraria.TimeLogger.renderTimes, and Terraria.TimeLogger.UpdateTime().

Referenced by Terraria.Main.DoDraw().