While running a game, opening the console and entering “STAT UnitGraph” produces a nice graph of roughly where the game is spending it’s time, broken down into Frame, Game and Draw components.
I’m trying to get up to a stable 60fps (currently hovering around ~51fps). In my case, frame is ~25ms, game is ~2ms, and draw is ~3ms.
Presumably Game is time spent on game logic and Draw is draw time. What is frame? What reasons typically cause frame to be much larger than the other two?