godot-demo-projects/3d/occlusion_culling_mesh_lod
Aaron Franke 5646c6a7a8
Open and save 3D demos in Godot 4.3 stable (#1109)
2024-08-27 13:40:06 -07:00
..
screenshots Add an occlusion culling and mesh LOD demo (#801) 2022-12-19 16:58:12 +01:00
README.md Remove old and unused project settings, update various demos for 4.2 (#1024) 2024-03-26 18:01:58 +01:00
camera.gd Use static typing in all demos (#1063) 2024-06-01 12:12:18 +02:00
door.gd Use static typing in all demos (#1063) 2024-06-01 12:12:18 +02:00
door.tscn Add doors as an example of dynamic occluders in the Occlusion culling demo (#807) 2024-04-11 21:07:55 -07:00
icon.webp Use 128×128 WebP icons for all demos (#885) 2023-03-29 18:59:57 +02:00
icon.webp.import Use 128×128 WebP icons for all demos (#885) 2023-03-29 18:59:57 +02:00
node_3d.gd Use static typing in all demos (#1063) 2024-06-01 12:12:18 +02:00
node_3d.occ Add an occlusion culling and mesh LOD demo (#801) 2022-12-19 16:58:12 +01:00
node_3d.tscn Add doors as an example of dynamic occluders in the Occlusion culling demo (#807) 2024-04-11 21:07:55 -07:00
project.godot Open and save 3D demos in Godot 4.3 stable (#1109) 2024-08-27 13:40:06 -07:00
room.blend Add an occlusion culling and mesh LOD demo (#801) 2022-12-19 16:58:12 +01:00
room.blend.import Add an occlusion culling and mesh LOD demo (#801) 2022-12-19 16:58:12 +01:00
room.glb Add an occlusion culling and mesh LOD demo (#801) 2022-12-19 16:58:12 +01:00
room.glb.import Open and save 3D demos in Godot 4.3 stable (#1109) 2024-08-27 13:40:06 -07:00

README.md

Occlusion Culling and Mesh LOD

This demo showcases the use of occlusion culling and mesh level of detail in a 3D scene.

The demo contains 1,024 identical rooms in a 64×64 grid. The room geometry is used as a basis for a baked OccluderInstance3D, which allows each room to be culled if it is hidden by another room's walls.

Occlusion culling can provide a performance benefit in draw call-bound scenarios. However, since the Forward+ backend uses a depth prepass, the shading cost is already reduced by the depth prepass. As a result, occlusion culling will not always result in a tangible performance increase, especially in outdoor scenes that have fewer occlusion culling opportunities. Indoor scenes with no DirectionalLight3D casting shadows are a best-case scenario for occlusion culling.

The blue spheres make use of automatically generated LODs, which reduce the number of triangles that need to be rendered each frame by the GPU. This provides a significant performance increase in scenes with complex geometry. In most scenes, this provides a greater performance benefit compared to occlusion culling.

While running the demo, you can toggle the use of mesh LOD and occlusion culling to view the performance difference these features make in this project. Results will vary depending on your CPU and GPU model.

Warning

If you are using a engine build that is not fully optimized, you may notice that enabling occlusion culling decreases performance. This is because occlusion culling is a demanding process on the CPU, which needs all the build-time optimization it can get.

Official builds are fully optimized, but self-compiled builds are not fully optimized by default (use the optimize=speed use_lto=yes SCons options).

Language: GDScript

Renderer: Forward+

Screenshot

Screenshot