RTAO Culling
WARNING
Settings described in this section will be hidden if you are using the HDRP pipeline with Tracing Mode set to Native Ray Tracing. In such cases, HTrace relies on Unity's native Ray Tracing Acceleration Structure (RTAS), which should be managed and debugged through native means, such as the Ray Tracing Settings volume override and the Rendering Debugger.
Otherwise, it is recommended to use the Hardware Ray Tracing Scene debug mode to visualize the changes introduced by the culling settings described below.
Cull Alpha Cutout
Culls all geometry with slpha cutout properties from the Ray Tracing Acceleration Structure, making it invisible to ray tracing. This can be used to exclude such geometry from Inline Ray Tracing to avoid artifacts stemming from screen-space alpha cutout evaluation in this mode.
Performance impact: beneficial


Cull Backfaces
Specifies whether rays can collide with the backfacing sides of polygons. This option is global and affects all surfaces, ignoring the "Double-Sided" material parameter. Disabling this option may slightly speed up tracing, as rays have a higher chance of finding hits earlier if they can collide with both sides of polygons. Enable this option if there are issues with non-closed geometry.
Performance impact: moderate, disable if not needed


Culling Mask
Allows culling objects from the Ray Tracing Acceleration Structure on a per-layer basis, making them invisible to ray tracing.
WARNING
Alternatively, individual meshes can be culled by using the Ray Tracing parameters in the Mesh Renderer component, where Ray Tracing Mode can be set to Off.
Culling Mode
Specifies which technique is used to cull geometry from the Ray Tracing Acceleration Structure.
- None: no culling is performed, all objects are included in the Ray Tracing Acceleration Structure.
- Sphere: all objects outside a bounding sphere centered around the camera, with radius controlled by the Culling Distance parameter, are culled.
- Solid Angle: allows ignoring small or distant geometry based on its projected solid angle, specified by the Min Solid Angle parameter.
These options are similar to the Culling properties exposed in the HDRP Ray Tracing Settings volume override.