Version: 2021.2
LanguageEnglish
  • C#

RayTracingSubMeshFlags

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Flags that determine the behavior of a sub-mesh in a RayTracingAccelerationStructure.

When you call RayTracingAccelerationStructure.AddInstance, you can pass a Renderer as argument. The Renderer's Mesh can have one or more sub-meshes. Use these flags to determine the behavior of individual sub-meshes when building an acceleration structure, or when performing ray tracing.

See Also: RayTracingAccelerationStructure, MeshFilter.sharedMesh, Mesh.subMeshCount.

Properties

DisabledUnity skips the sub-mesh when building a RayTracingAccelerationStructure. As a result, rays cast using TraceRay HLSL function will never intersect the sub-mesh.
EnabledThe sub-mesh is provided as input to a RayTracingAccelerationStructure build operation.
ClosestHitOnlyWhen rays encounter this geometry, the geometry acts as though no any hit shader is present. The geometry is considered opaque.
UniqueAnyHitCallsThis flag enables the guarantee that for a given ray-triangle pair, an any hit shader is invoked only once, potentially with some performance impact.