Last active
April 24, 2016 17:09
-
-
Save weshardee/f1407e2738cd987830c000522bfa95c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Flat planes (quads) with solid colors that can be faded. Great for placeholder elements or a full screen fade-to-grey quad behind your pause menu for that extra smooth feel. | |
Shader "2D/Color Only Alpha" | |
{ | |
Properties | |
{ | |
_Color ("Main Color", Color) = (1,1,1,1) | |
} | |
Category | |
{ | |
ZWrite Off | |
Tags {"Queue" = "Transparent" } | |
Blend SrcAlpha OneMinusSrcAlpha | |
SubShader | |
{ | |
Pass | |
{ | |
Color [_Color] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment