Hugo Locurcio 2a962929f3 Update demo files for Godot 4.2.1 (#1013) 8 hónapja
..
screenshots d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
README.md d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
camera.gd d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
icon.webp 63d1cd9a60 Use 128×128 WebP icons for all demos (#885) 1 éve
icon.webp.import 63d1cd9a60 Use 128×128 WebP icons for all demos (#885) 1 éve
node_3d.gd d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
node_3d.occ d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
node_3d.tscn d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
project.godot 2a962929f3 Update demo files for Godot 4.2.1 (#1013) 8 hónapja
room.blend d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
room.blend.import d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
room.glb d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 éve
room.glb.import 2a962929f3 Update demo files for Godot 4.2.1 (#1013) 8 hónapja

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 Plus 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 Plus

Screenshot

Screenshot