Occlusion Culling
Object culling allows you not to render objects which are not presented in the viewing frustum. The particular cases of occlusion culling are the following:
- Occluders: box, mesh.
- Hardware occlusion queries for objects with heavy shaders.
Occluders#
Occluders allow culling geometry that isn't visible behind them. There are 2 types of occluders:
The type of occluder to be used is defined by geometry to be culled.
Occluders can be very effective in case of complex environments where there are many objects that occlude each other and are costly to render (they have a lot of polygons and/or heavy shaders).
Before using occluders, check the following:
- Rendering of occluders is enabled: in the Menu Bar, Rendering -> Occlusion Culling -> Occluders is toggled on.
- Rendering of shadows from the occluded objects is disabled: in the Menu Bar, choose Rendering -> Occlusion Culling and toggle Shadows Culling on.
You can leave shadows rendering enabled, if necessary.
Usage of occluders is shown in the Content Optimization video tutorial.
Using a Box-Shaped Occluder#
The occluder is a box shape that culls objects' surfaces, bounds of which aren't visible behind it. This is the simplest type of occluders that should be used together with box-shaped objects that block off other objects. For example, you can add an occluder the shape of which coincides with the bounds of a building to avoid rendering of objects behind this building.
To create a box-shaped occluder, perform the following:
- In the Menu Bar, choose Create -> Optimization -> Occluder and add the occluder as a child to the node that should occlude other objects.
- In the Common section of the Node tab in the Parameters window, set the position of the occluder to the parent one.
- In the World Occluder section of the Node tab, click Edit Size to enable the editing mode for the occluder. Resize the occluder by using the colored rectangles on the occluder box sides so that it coincides with the parent node size.
You can also use the Size parameter to set the size along the axes.
- Specify the Distance between the camera and the occluder, at which the occluder doesn't occlude anything and, therefore, should be disabled to avoid negative impact on the performance.
To check how the occluder works, disable the parent node and then try to toggle the occluder on and off:
By default, the front faces of the occluder are used to cull objects. However, if the camera is inside the occluder (e.g. inside the building), occlusion culling won't be performed. To avoid such situation, enable the Back Face parameter in the World Occluder section of the Node tab.
Using a Mesh-Based Occluder#
The occluder mesh is based on an arbitrary mesh that culls objects' surfaces, bounds of which aren't visible behind it. The occluder mesh is used together with the geometry that cannot be approximated with a box.
To create a mesh-based occluder, perform the following:
- Prepare a low-poly mesh to be used for the occluder.
It isn't recommended to use the same detailed mesh that is used for the node that should occlude other objects: the mesh for the occluder should be as simple as possible to avoid performance loss.
- In the Menu Bar, choose Create -> Optimization -> Occluder Mesh and specify the prepared mesh.
You can load a new mesh for the occluder at any time.
- Add the occluder as a child to the node that should occlude other objects.
- In the Common section of the Node tab in the Parameters window, set the position of the occluder to the parent one.
- Specify the Distance between the camera and the occluder, at which the occluder doesn't occlude anything and, therefore, should be disabled to avoid negative impact on the performance.
Hardware Occlusion Queries#
One more option to cull geometry that is not visible in the camera viewport is to use a hardware occlusion query. It allows skipping rendering of objects, the bounding boxes of which are covered by another solid geometry. As a result, the number of rendered polygons is reduced and the performance grows.
To run the hardware occlusion test for the scene before sending data to the GPU, toggle the Rendering -> Occlusion Culling -> Occlusion Query flag on in the Menu Bar.
To run the hardware occlusion test, perform the following:
- In the Menu Bar, toggle the Rendering -> Occlusion Culling -> Occlusion Query flag on to enable testing for the scene before sending data to the GPU.
- For all objects, that should be culled, enable the Culled by Occlusion Query flag in the Node tab of the Parameters window.
Only nodes with this flag set are tested on the hardware occlusion culling.
When culling is enabled for the object, an occlusion query box is rendered for it.
The occlusion query box coincides with the size of the object's bounding box. When this box is overlapped (i.e. it isn't in the camera viewport), it is highlighted red, which means the occlusion test is not passed and the mesh will not be drawn.
Occlusion query test passed |
Occlusion query test failed, material ball isn't rendered |
You can check the effect of this technique by enabling the second wireframe mode to see all triangles in the scene. Type render_show_triangles 2 in the console and check the way the occluded polygons act.
An example of using hardware occlusion queries is also available in the Content Optimization video tutorial.