MetadataValue
Contains a single metadata value for a batch.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Struct
- Namespace: UnityEngine.Rendering
- Assembly: UnityEngine.CoreModule
public struct MetadataValue
Remarks
A metadata value is a uint32 value tied to a DOTS-instanced property. Unity passes this metadata to the shader.
Fields
Value | Description |
|---|---|
| NameID | The name ID of the property that the metadata value is tied to. To specify a value for a property declared with UNITY_DOTS_INSTANCED_PROP(float4, Example), pass Shader.PropertyToID("Example") here. |
| Value | Unity passes this uint32 value to the shader for this property. The value is shared between all instances in the batch. Usage example: provide a buffer address for the property. |