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.
CloseFor 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.
Closeshader | Shader that is being compiled. |
snippet | Details about the specific shader code being compiled. |
data | List of variants to be compiled for the specific shader code. |
Implement this interface to receive a callback before a shader snippet is compiled.
using System.Collections.Generic; using UnityEditor.Build; using UnityEditor.Rendering; using UnityEngine; using UnityEngine.Rendering;
class MyCustomBuildProcessor : IPreprocessShaders { ShaderKeyword m_Blue;
public MyCustomBuildProcessor() { m_Blue = new ShaderKeyword("_BLUE"); }
public int callbackOrder { get { return 0; } }
public void OnProcessShader(Shader shader, ShaderSnippetData snippet, IList<ShaderCompilerData> data) { for (int i = data.Count - 1; i >= 0; --i) { if (!data[i].shaderKeywordSet.IsEnabled(m_Blue)) continue;
data.RemoveAt(i); } } }