#pragma surface surf NoLighting
fixed4 LightingNoLighting(SurfaceOutput s, fixed3 lightDir, fixed atten)
{
fixed4 c;
c.rgb = s.Albedo;
c.a = s.Alpha;
return c;
}
Last active
January 22, 2019 19:09
-
-
Save smkplus/e95f9cecfa27d51c9278b22123718fd5 to your computer and use it in GitHub Desktop.
Unlit Surface Shader
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment