[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/PlayerSettings.SetShaderChunkCountForPlatform.html [Back]  [Original]

Unity - Scripting API: PlayerSettings.SetShaderChunkCountForPlatform
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    PlayerSettings.SetShaderChunkCountForPlatform

    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
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Switch to Manual

    Declaration

    public static void SetShaderChunkCountForPlatform(BuildTarget buildTarget, int chunkCount);

    Parameters

    Parameter Description
    buildTarget The build target to set the shader chunk count for.
    chunkCount The maximum number of chunks to keep in memory for each shader.

    Description

    Sets the default limit on the number of shader variant chunks Unity loads and keeps in memory on the build target.

    To limit the amount of memory Unity uses to load shader variants, you can use SetShaderChunkCountForPlatform to set the maximum number of compressed shader variant chunks you want Unity to load and decompress into CPU memory at one time.

    This parameter overrides PlayerSettings.SetDefaultShaderChunkCount on the build target.

    The default value is 0, which means Unity loads and decompresses all the chunks into memory.

    When Unity reaches the limit but needs to load another chunk, Unity removes the least recently used decompressed chunk from memory to make room.

    Use PlayerSettings.SetDefaultShaderChunkSizeInMBForPlatform to limit the size of compressed chunks on the build target.

    Additional resources: PlayerSettings.GetShaderChunkCountForPlatform, PlayerSettings.SetOverrideShaderChunkSettingsForPlatform.


    Web Proxy Viewer  |  New URL  |  Original Page