Shader的自定义特性使用

Posted HONT blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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");
    }
}

 

 

测试效果如下:

 

以上是关于Shader的自定义特性使用的主要内容,如果未能解决你的问题,请参考以下文章

Three.js 中的自定义纹理着色器

找到我的自定义代码片段 Xcode 6?

片段内的自定义列表不起作用

在片段着色器中丢失纹理定义

片段中的自定义列表视图。未找到布局

PagerSlidingTabStrip- 使用列表片段的自定义视图显示突然的行为