Shader的自定义特性使用

使用自定义特性关键字,可以动态对Shader某一部分代码进行开关操作

 

shader(定义了KEYWORD1特性):

定义:#pragma shader_feature KEYWORD1

判断:#ifdef KEYWORD1

复制代码
Shader "Custom/NewSurfaceShader" {
    Properties {
        _Color ("Color", Color) = (1,1,1,1)
        _MainTex ("Albedo (RGB)", 2D) = "white" {}
        _Glossiness ("Smoothness", Range(0,1)) = 0.5
        _Metallic ("Metallic", Range(0,1)) = 0.0
    }
    SubShader {
        Tags { "RenderType"="Opaque" }
        LOD 200
        
        CGPROGRAM
        // Physically based Standard lighting model, and enable shadows on all light types
        #pragma surface surf Standard fullforwardshadows

        // Use shader model 3.0 target, to get nicer looking lighting
        #pragma target 3.0

        #pragma shader_feature KEYWORD1

        sampler2D _MainTex;

        struct Input {
            float2 uv_MainTex;
        };

        half _Glossiness;
        half _Metallic;
        fixed4 _Color;

        void surf (Input IN, inout SurfaceOutputStandard o) {
            // Albedo comes from a texture tinted by color
            fixed4 c = tex2D (_MainTex, IN.uv_MainTex) * _Color;
#ifdef KEYWORD1
            o.Albedo = float3(0,0,0);
#else
            o.Albedo = float3(1,1,1);
#endif
            // Metallic and smoothness come from slider variables
            o.Metallic = _Metallic;
            o.Smoothness = _Glossiness;
            o.Alpha = c.a;
        }
        ENDCG
    }
    FallBack "Diffuse"
}
复制代码

 

脚本:

复制代码
using UnityEngine;
using System.Collections;

public class ShaderKeywordTest : MonoBehaviour
{
    public Material mat;


    void OnEnable()
    {
        mat.EnableKeyword("KEYWORD1");
    }

    void OnDisable()
    {
        mat.DisableKeyword("KEYWORD1");
    }
}
复制代码

 

 

测试效果如下:

 

补充,关于multi_compile和shader_feature的区别:

multi_compile - 纯全局的keyword,全局keyword有数量限制,没有用到的变体打包也会被打进去

shader_feature - 也是一种keyword声明方式,但没有用到的变体打包时会被删除,用shader变体集收集一下即可

具体见知乎:https://zhuanlan.zhihu.com/p/77043332

 

posted @   HONT  阅读(844)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
点击右上角即可分享
微信分享提示
回到顶部