# Occluder Box
## Overview
An *occluder box* is a specialized geometry used to improve performance. Every
object that fully obscured by occluder box is excluded from rendering. Partially
obscured objects stay intact.
If any part of an object extends beyond the occluder box,
it will reappear: see [video
1](https://drive.google.com/file/d/1JOlqzVnGlJNNe9yyexRqOIjiz75PWi74/view?usp=sharing)
and [video
2](https://drive.google.com/file/d/1B6ZvtDnbLyorXTSYhPW4ooVFcv0oTCC_/view?usp=sharing)
for reference.
## Creating an Occluder Box
To create an occluder box for an object, follow these steps:
1. Create a Box object.
2. Name the object `occluder_box`.
3. Create a material using the *Dagor Dagorrat Material 2* shader.
4. Set the shader class to `gi_black` (for better visibility, it's
recommended to choose a material color that contrasts with the object, like
bright red).
---
5. Assign the material to the object named `occluder_box`.
6. Open the object's properties and uncheck the **Renderable** option (this will
prevent potential issues later on).
---
7. In the **User Defined** tab, input the following:
```
renderable:b=no
cast_shadows:b=no
occluder:b=yes
collidable:b=no
```
**User Defined Properties:**
- `renderable:b=no` – Disables the object from being rendered.
- `cast_shadows:b=no` – Prevents the object from casting shadows.
- `occluder:b=yes` – Designates the object as an occluder.
- `collidable:b=no` – Disables collision generation.
```{important}
Unchecking the **collidable** option in the Dagor object properties does not
achieve the same result!
To verify this, check the asset in the [*Asset
Viewer*](../../../dagor-tools/asset-viewer/asset-viewer/asset_viewer.md). If
the occluder box is visible in the collision data, the setup is incorrect.
The collision should not include an `occluder_box` node.
```
8. Convert the `occluder_box` object to `Editable Poly` or apply an `Edit Poly`
modifier.
9. Adjust the size to fit the object it should occlude. Specific size
requirements are detailed below.
## Editing the Occluder Box
The *occluder box* is aptly named because only its bounding box matters,
regardless of its orientation. Therefore, the following rules apply when
creating an occluder box:
1. The occluder box should never extend beyond the object's geometry.
---
2. It should fill as much of the object's internal space as possible, similar to
UV mapping, without exceeding the object's boundaries.
3. Rotating the occluder box is highly discouraged.
Here is an example of an unrotated occluder box:
And here's how it looks when rotated:
---
4. **Do not** name the object anything other than `occluder_box`.
5. The occluder box should be placed in the `LOD00` layer.
```{tip}
If you need to remove an occluder box, delete its polygons while retaining the
object and its properties as described.
```
## Verifying Occluder Box Setup
There are several ways to verify if the occluder box is set up correctly:
1. In [*Asset
Viewer*](../../../dagor-tools/asset-viewer/asset-viewer/asset_viewer.md), the
occluder box is displayed as a white rectangle.
If it's not visible, ensure the proper setting is enabled. If the occluder
box appears misaligned (as shown in the image), you will need to correct it
in *3ds Max*.
2. During in-game testing, you can observe the occluder box in action by
pressing `F3` to display the wireframe, see
[video](https://drive.google.com/file/d/1JOlqzVnGlJNNe9yyexRqOIjiz75PWi74/view?usp=sharing)
for reference.
If objects behind the occluder do not disappear, disappear too early, too
late, or not at all, recheck the setup based on the guidelines above. If the
occluder box is incorrectly configured, you will likely encounter issues
similar to those shown in [video
1](https://drive.google.com/file/d/11DACcju6HsO-XCd0W82-qG-AouQRvGN-/view?usp=sharing)
and [video
2](https://drive.google.com/file/d/15J1qdlZV3IpcrAudYAyTK4kJU-DoYdTB/view?usp=sharing).
## Examples of Well-Configured Occluder Boxes
Here are several example images of correctly set up occluder boxes.
## Commands for Displaying Occluders
- `render.debug occlusion` – Shows occluders and their statistics.
- `render.debug occlusion occluded` – Displays bounding boxes of occluded
objects.
Toggle commands:
- `render.debug occlusion boxes`
- `render.debug occlusion stats`
- `render.debug occlusion occludedv`
- `render.debug occlusion not_occluded`
Additionally, you can use:
- `occlusion.enabled` – Enables or disables occlusion rendering entirely.
- `rendinst.check_occlusion` – Enables or disables occlusion for render
instances.