• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
Question by Lishin · Jun 11, 2016 at 07:14 PM · shadershaderstransparencyalpha

Changing custom shader. Add alpha cutout

Hello everybody. Help change the shader and add the correct alpha cutout pls!

 //Shader
 Shader "Toony Colors Free/Rim Lighting"
 {
     Properties
     {
         //TOONY COLORS
         _Color ("Color", Color) = (0.5,0.5,0.5,1.0)
         _HColor ("Highlight Color", Color) = (0.6,0.6,0.6,1.0)
         _SColor ("Shadow Color", Color) = (0.3,0.3,0.3,1.0)
         
         //DIFFUSE
         _MainTex ("Main Texture (RGB)", 2D) = "white" {}
         
         //TOONY COLORS RAMP
         _Ramp ("Toon Ramp (RGB)", 2D) = "gray" {}
         
         //RIM LIGHT
         _RimColor ("Rim Color", Color) = (0.8,0.8,0.8,0.6)
         _RimMin ("Rim Min", Range(0,1)) = 0.5
         _RimMax ("Rim Max", Range(0,1)) = 1.0
         
         
     }
     
     SubShader
     {
         Tags { "RenderType"="Opaque" }
         
         CGPROGRAM
         
         #pragma surface surf ToonyColorsCustom
         #pragma target 2.0
         #pragma glsl
         
         
         //================================================================
         // VARIABLES
         
         fixed4 _Color;
         sampler2D _MainTex;
         
         fixed4 _RimColor;
         fixed _RimMin;
         fixed _RimMax;
         float4 _RimDir;
         
         struct Input
         {
             half2 uv_MainTex;
             float3 viewDir;
         };
         
         //================================================================
         // CUSTOM LIGHTING
         
         //Lighting-related variables
         fixed4 _HColor;
         fixed4 _SColor;
         sampler2D _Ramp;
         
         //Custom SurfaceOutput
         struct SurfaceOutputCustom
         {
             fixed3 Albedo;
             fixed3 Normal;
             fixed3 Emission;
             half Specular;
             fixed Alpha;
         };
         
         inline half4 LightingToonyColorsCustom (SurfaceOutputCustom s, half3 lightDir, half3 viewDir, half atten)
         {
             s.Normal = normalize(s.Normal);
             fixed ndl = max(0, dot(s.Normal, lightDir)*0.5 + 0.5);
             
             fixed3 ramp = tex2D(_Ramp, fixed2(ndl,ndl));
         #if !(POINT) && !(SPOT)
             ramp *= atten;
         #endif
             _SColor = lerp(_HColor, _SColor, _SColor.a);    //Shadows intensity through alpha
             ramp = lerp(_SColor.rgb,_HColor.rgb,ramp);
             fixed4 c;
             c.rgb = s.Albedo * _LightColor0.rgb * ramp;
             c.a = s.Alpha;
         #if (POINT || SPOT)
             c.rgb *= atten;
         #endif
             return c;
         }
         
         
         //================================================================
         // SURFACE FUNCTION
         
         void surf (Input IN, inout SurfaceOutputCustom o)
         {
             fixed4 mainTex = tex2D(_MainTex, IN.uv_MainTex);
             
             o.Albedo = mainTex.rgb * _Color.rgb;
             o.Alpha = mainTex.a * _Color.a;
             
             //Rim
             float3 viewDir = normalize(IN.viewDir);
             half rim = 1.0f - saturate( dot(viewDir, o.Normal) );
             rim = smoothstep(_RimMin, _RimMax, rim);
             o.Emission += (_RimColor.rgb * rim) * _RimColor.a;
         }
         
         ENDCG
     }
     
     Fallback "Diffuse"
 }


Comment

People who like this

0 Show 0
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
Best Answer

Answer by Namey5 · Jun 12, 2016 at 05:08 AM

  Shader "Toony Colors Free/Rim Lighting"
  {
      Properties
      {
          //TOONY COLORS
          _Color ("Color", Color) = (0.5,0.5,0.5,1.0)
          _HColor ("Highlight Color", Color) = (0.6,0.6,0.6,1.0)
          _SColor ("Shadow Color", Color) = (0.3,0.3,0.3,1.0)
          
          //DIFFUSE
          _MainTex ("Main Texture (RGB)", 2D) = "white" {}
          
          //TOONY COLORS RAMP
          _Ramp ("Toon Ramp (RGB)", 2D) = "gray" {}
          
          //RIM LIGHT
          _RimColor ("Rim Color", Color) = (0.8,0.8,0.8,0.6)
          _RimMin ("Rim Min", Range(0,1)) = 0.5
          _RimMax ("Rim Max", Range(0,1)) = 1.0
          
          _Cutoff ("Alpha Cutoff", Range(0,1)) = 0.7
      }
      
      SubShader
      {
          Tags { "RenderType"="Opaque" }
          
          CGPROGRAM
          
          #pragma surface surf ToonyColorsCustom alphatest:_Cutoff addshadow
          #pragma target 2.0
          #pragma glsl
          
          
          //================================================================
          // VARIABLES
          
          fixed4 _Color;
          sampler2D _MainTex;
          
          fixed4 _RimColor;
          fixed _RimMin;
          fixed _RimMax;
          float4 _RimDir;
          
          struct Input
          {
              half2 uv_MainTex;
              float3 viewDir;
          };
          
          //================================================================
          // CUSTOM LIGHTING
          
          //Lighting-related variables
          fixed4 _HColor;
          fixed4 _SColor;
          sampler2D _Ramp;
          
          //Custom SurfaceOutput
          struct SurfaceOutputCustom
          {
              fixed3 Albedo;
              fixed3 Normal;
              fixed3 Emission;
              half Specular;
              fixed Alpha;
          };
          
          inline half4 LightingToonyColorsCustom (SurfaceOutputCustom s, half3 lightDir, half3 viewDir, half atten)
          {
              s.Normal = normalize(s.Normal);
              fixed ndl = max(0, dot(s.Normal, lightDir)*0.5 + 0.5);
              
              fixed3 ramp = tex2D(_Ramp, fixed2(ndl,ndl));
          #if !(POINT) && !(SPOT)
              ramp *= atten;
          #endif
              _SColor = lerp(_HColor, _SColor, _SColor.a);    //Shadows intensity through alpha
              ramp = lerp(_SColor.rgb,_HColor.rgb,ramp);
              fixed4 c;
              c.rgb = s.Albedo * _LightColor0.rgb * ramp;
              c.a = s.Alpha;
          #if (POINT || SPOT)
              c.rgb *= atten;
          #endif
              return c;
          }
          
          
          //================================================================
          // SURFACE FUNCTION
          
          void surf (Input IN, inout SurfaceOutputCustom o)
          {
              fixed4 mainTex = tex2D(_MainTex, IN.uv_MainTex);
              
              o.Albedo = mainTex.rgb * _Color.rgb;
              o.Alpha = mainTex.a * _Color.a;
              
              //Rim
              float3 viewDir = normalize(IN.viewDir);
              half rim = 1.0f - saturate( dot(viewDir, o.Normal) );
              rim = smoothstep(_RimMin, _RimMax, rim);
              o.Emission += (_RimColor.rgb * rim) * _RimColor.a;
          }
          
          ENDCG
      }
      
      Fallback "Diffuse"
  }

You really should look these things up before asking the question, though. There are many different pages that cover this kind of thing, and I'm sure this question has been asked before.

Comment
Lishin

People who like this

1 Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Lishin · Jun 12, 2016 at 08:30 PM 1
Share

Thank you so much for your help! Rest assured, i was looking for the answer to my question. I am an active user of this site for many years and to ask the question, I first registered. Sorry for my English. Thanks again!

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Transparent Diffuse Specular Normal Shader problem 1 Answer

Transparent / Vertex Lit Ignore Sides 1 Answer

Weird Transparency behaviour when using ShaderGraph in LWRP and setting alpha to 1 0 Answers

Make a complex object semi transparent without changing it 2 Answers

Add transparency to clipping plane shader 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges