Created
August 11, 2017 15:03
-
-
Save KumoKairo/3f125ccff53beba8e11aa93a6818b909 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
half4 frag(v2f i) : COLOR | |
{ | |
half p = i.texcoord.y; | |
// Moving [-1, 1] range to [0, 1] | |
half normP = p * 0.5 + 0.5; | |
half3 color = lerp(_GroundColor,_SkyTint, p);; | |
return half4(color, 1.0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment