Performance optimization of UE4

1.Console commands

The console commands in ue4 are just like the console console in windows. You can display some important parameters by typing some commands.

1.1 Stat unit: Provides the time occupied by CPU and GPU for one frame

Frame: Total time frames

Game: The frame time of the game thread, which can also be called the main thread game logic, physical grid and blueprint time are all calculated here.

Draw: The frame time of the rendering thread

Gpu: The time it takes for the GPU to complete a frame

1.2 Stat Unitgraph

The indicator is the same as Stat Unit, but it displays the data 10 seconds ago in the form of a chart.

1.3 Stat FPS

1.4 Stat Game: Displays the time related to the game thread

1.5 Stat Engine: Display the number of mesh triangles and frame time

1.6 Stat Scenerendering: Displays the cost of the CPU rendering thread

1.7 Stat GPU: Displays the cost of GPU work, that is, the cost of GPU operation calculations

1.8 Profile GPU: Captures GPU rendering times, which are annotated and grouped according to operation or operating system

Guess you like

Origin blog.csdn.net/weixin_41363156/article/details/122642483