Version: 2019.3
public void OnProcessShader (Shader shader, Rendering.ShaderSnippetData snippet, IList<ShaderCompilerData> data);

パラメーター

shaderShader that is being compiled.
snippetDetails about the specific shader code being compiled.
dataList 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); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961