• 滚动光效shader


    Shader "Custom/LightMove" {
    Properties {
    _MainTex ("Base (RGB)", 2D) = "white" {}
    _BumpMap ("BumpMap", 2D) = "bump" {}
    _Shiness ("Base (BA)", 2D) = "white" {}
    _Color("Main Color",Color) = (1,1,1,0)
    _RimPower ("Rim Power", Range(0.5,8.0)) = 3.0
    }
    SubShader {
    Tags { "RenderType"="Opaque" }
    LOD 200
    
    CGPROGRAM
    #pragma surface surf Lambert
    
    
    sampler2D _MainTex;
    sampler2D _BumpMap;
    sampler2D _Shiness;
    float _RimPower;
    fixed4 _Color;
    struct Input {
    float2 uv_MainTex;
    float2 uv_BumpMap;
    float2 uv_Shiness;
    float3 viewDir;
    };
    
    
    void surf (Input IN, inout SurfaceOutput o) {
    float b = IN.uv_Shiness.x + 5 * _Time;
    float2 e = float2(b,IN.uv_Shiness.y);
    half4 c = tex2D (_MainTex, IN.uv_MainTex);
    half4 d = tex2D (_Shiness, e);
    o.Albedo = c.rgb;
    o.Normal = UnpackNormal (tex2D (_BumpMap, IN.uv_BumpMap));
    half rim = 1.0 - saturate(dot (normalize(IN.viewDir), o.Normal));
    o.Emission =d.rgb * _Color.rgb * pow (rim, _RimPower);
    o.Alpha = c.a;
    }
    ENDCG
    } 
    FallBack "Diffuse"
    }
  • 相关阅读:
    7.15 更改累计和中的值
    7.10 计算中间值
    7.11 求总和的百分比
    7.9 计算模式
    7.8 计算累计差
    7.4 求一个表的行数
    7.6 生成累计和
    7.7 生成累积乘积
    7.2 求某列中的最小、最大值
    7.3 对某列的值求和
  • 原文地址:https://www.cnblogs.com/123ing/p/4080932.html
Copyright © 2020-2023  润新知