UpdateInstanceID
Updates the instance ID of a ray tracing instance.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEngine.Rendering
- Assembly: UnityEngine.CoreModule
UpdateInstanceID(Renderer, uint)
Updates the instance ID of a ray tracing instance.
public void UpdateInstanceID(Renderer renderer, uint instanceID)
Parameters
UpdateInstanceID(int, uint)
Updates the instance ID of a ray tracing instance.
public void UpdateInstanceID(int handle, uint instanceID)
Parameters
Remarks
Pass along a new instance ID and the handle RayTracingAccelerationStructure.AddInstance returns in order to update the ray tracing instance ID associated with an axis-aligned bounding box (AABB) GraphicsBuffer or a Mesh.
Ray tracing instances in the acceleration structure contain an user-defined instance ID. You can access this instance ID in HLSL using intrinsic which provides a way to access additional per-instance custom data. Note that this function is available only in closest hit, any hit, and intersection shaders.
InstanceID()By default, if an instance ID is not specified when calling RayTracingAccelerationStructure.AddInstance function, Unity will assign a instance ID lower than the value returned by the RayTracingAccelerationStructure.GetInstanceCount function.
Note that building the acceleration structure on the GPU has to be triggered by calling RayTracingAccelerationStructure.Build or CommandBuffer.BuildRayTracingAccelerationStructure.
Additional Resources: RayTracingAccelerationStructure.AddInstance, RayTracingAccelerationStructure.RemoveInstance.