Optimization/Tips/Errors

Enable DirectX12

You can enable DirectX12 for increasing your performance from Project Settings-> Platforms -> Windows -> Default RHI:

Engine Scalability Settings for optimization

If you need, you can increase the performance in various ways:

  • You can decrease the engine scalability. "Epic" is the default setting, you can set it to High setting, which will increase the performance with a low impact on visuals.

  • Disable "Use Hardware Ray Tracing when available" or at least set "Software Ray Tracing Mode" to "Global Tracing". This will increase the performance with a low impact on visuals.

  • Or disable Support Hardware Ray Tracing:

  • Change Shadow Map Method to "Shadow Maps" (Default is Virtual Shadow Maps (Beta)

  • You can gain a huge performance by disabling the lumen but it will impact the visuals drastically.

You can disable it from Project Settings or from Post Processing Volume:

Packed Level Actor

You can increase the performance a lot by editing the level itself:

  • You can create Packed Level Actor for each building from the scene or multiple buildings in a row. This will increase the performance by decreasing the draw calls, the engine will use more mesh instances than regular static meshes.

You can create your own building Packed Level Actor by selecting all the static meshes/blueprints from a modular building, then pressing on Actor -> Level -> Creating Packed Level Actor:

Bake The procedural Background Buildings in static meshes

This will improve the performance and also the graphic quality because it will be affected by Distance Field Shadows/Ambient Occlusion.

1. Select the building that you want to bake into a static mesh. Select the “Building” Component from the “Details” tab and press on the "Create StaticMesh" Button from the "Procedural Mesh" category:

2.Choose the location and the name of the new static mesh:

3. Delete the building blueprint from the scene and put the new static mesh building in the same location.

Merge multiple actors

This could help to increase performance in some cases.

1. Select the actors

2. Open “Merge Actors” tool (Windows/Developer Tools/MergeActors)

3* Optional - Check “ReplaceSource Actors”

4. Press “Merge Actors” and save the new mesh.

Last updated