Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Shader "Library/Unlit - Alpha Blended"
- {
- Properties
- {
- _Color ("Main Color", Color) = (1,1,1,1)
- _MainTex ("Base (RGB)", 2D) = "white" {}
- }
- Category
- {
- Fog { Mode off }
- ZWrite Off
- Cull Off
- SubShader
- {
- Tags {"Queue" = "Transparent"}
- Pass
- {
- Blend SrcAlpha OneMinusSrcAlpha
- Lighting Off
- SetTexture [_MainTex]
- {
- constantColor [_Color]
- Combine texture * constant, texture * constant
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement