SetDefaultShaderChunkCount(int)
Sets the default limit on the number of shader variant chunks Unity loads and keeps in memory.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor
public static void SetDefaultShaderChunkCount(int chunkCount)
Parameters
The maximum number of chunks to keep in memory for each shader.
Remarks
To limit the amount of memory Unity uses to load shader variants, you can use to set the maximum number of compressed shader variant chunks you want Unity to load and decompress into CPU memory at one time.
SetDefaultShaderChunkCountThe default value is , which means Unity loads and decompresses all the chunks into memory.
0When Unity reaches the limit but needs to load another chunk, Unity removes the least recently used decompressed chunk from memory to make room.
You can use PlayerSettings.SetDefaultShaderChunkSizeInMB to limit the size of compressed chunks.
Use the following to override the default shader chunk count:
- PlayerSettings.SetShaderChunkCountForPlatform to override for a build target.
- Shader.maximumChunksOverride to override at runtime.
Additional Resources: PlayerSettings.GetDefaultShaderChunkCount.