Aaron Franke 5646c6a7a8 Open and save 3D demos in Godot 4.3 stable (#1109) 3 月之前
..
screenshots d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 年之前
README.md 31d1c0c112 Remove old and unused project settings, update various demos for 4.2 (#1024) 8 月之前
camera.gd bac1e69164 Use static typing in all demos (#1063) 5 月之前
door.gd bac1e69164 Use static typing in all demos (#1063) 5 月之前
door.tscn 4f866f2a9a Add doors as an example of dynamic occluders in the Occlusion culling demo (#807) 7 月之前
icon.webp 63d1cd9a60 Use 128×128 WebP icons for all demos (#885) 1 年之前
icon.webp.import 63d1cd9a60 Use 128×128 WebP icons for all demos (#885) 1 年之前
node_3d.gd bac1e69164 Use static typing in all demos (#1063) 5 月之前
node_3d.occ d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 年之前
node_3d.tscn 4f866f2a9a Add doors as an example of dynamic occluders in the Occlusion culling demo (#807) 7 月之前
project.godot 5646c6a7a8 Open and save 3D demos in Godot 4.3 stable (#1109) 3 月之前
room.blend d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 年之前
room.blend.import d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 年之前
room.glb d3cc6be62c Add an occlusion culling and mesh LOD demo (#801) 1 年之前
room.glb.import 5646c6a7a8 Open and save 3D demos in Godot 4.3 stable (#1109) 3 月之前

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