火多多 发表于 2017-8-28 11:27:35

新的一个 双面CUT OFF 内外双色处理

Shader "Custom/Alpha/CutoffAlpha" {
   Properties {
               _Color ("Main Color", Color) = (1,1,1,1)
               _MainTex ("Albedo (RGB)", 2D) = "white" {}
               _BackColor ("Back Main Color", Color) = (1,1,1,1)
               }
SubShader {
             Tags { "RenderType"="Opaque" }
                  LOD 400
      Cull back

               CGPROGRAM
               #pragma surface surf Lambert alphatest:_Cutoff

            sampler2D _MainTex;

            fixed4 _Color;


               struct Input {
                  float2 uv_MainTex;
                };

                void surf (Input IN, inout SurfaceOutput o) {
                  fixed4 c= tex2D(_MainTex, IN.uv_MainTex);
                  o.Albedo = c.rgb* _Color.rgb;
                  o.Alpha = c.a ;

                     }
                ENDCG

   Cull front

               CGPROGRAM

                        #pragma surface surf Lambert alphatest:_Cutoff

            sampler2D _MainTex;
            fixed4 _BackColor;

                struct Input {
                   float2 uv_MainTex;
               };

            void surf (Input IN, inout SurfaceOutput o) {
                   fixed4 c = tex2D(_MainTex, IN.uv_MainTex) * _BackColor;
                   o.Albedo = c.rgb;
                   o.Alpha = c.a;
               }
                           
                ENDCG
    }

    FallBack "Diffuse"

火多多 发表于 2017-8-28 11:28:36

目前都是免费提供给大家源码。。。。

k2263 发表于 2017-8-28 11:59:27

貌似很有用的样子

k2263 发表于 2017-8-28 11:59:29

貌似很有用的样子

漫道 发表于 2017-8-28 14:54:37

看到这么好的帖如同回到初恋的年代

376569522 发表于 2017-8-29 00:15:04

你们大神真会玩!

376569522 发表于 2017-8-30 00:14:19

想要成大触,天天上元素!

slyzs0622 发表于 2017-9-4 11:18:25

谢楼主分享!!!!

kavi5000 发表于 2018-11-5 12:13:11

{:1_236:}

星舰与太阳 发表于 2018-11-12 09:41:08

{:1_230:}

浪荡丶 发表于 2018-11-12 09:47:17

首发必需微元素,荣耀加身装备酷!

laopi123 发表于 2018-11-12 10:50:15

资源甚好,发帖艰辛,且阅且珍惜!

wolfram 发表于 2018-11-12 11:45:07


楼主技术大神啊

qq_叫我小明_LUo 发表于 2018-11-14 17:43:21

6666666666666

zjg1989821 发表于 2018-11-14 22:21:54

看到这么好的帖如同回到初恋的年代

zjg1989821 发表于 2018-11-14 22:21:56

看到这么好的帖如同回到初恋的年代

zjg1989821 发表于 2018-11-14 22:22:00

看到这么好的帖如同回到初恋的年代

zjg1989821 发表于 2018-11-14 22:22:03

看到这么好的帖如同回到初恋的年代

zjg1989821 发表于 2018-11-14 22:22:06

看到这么好的帖如同回到初恋的年代

zjg1989821 发表于 2018-11-14 22:22:08

看到这么好的帖如同回到初恋的年代
页: [1] 2
查看完整版本: 新的一个 双面CUT OFF 内外双色处理