Free Opaque/Trans/Cut/Outline Basic shaders!

Hey Guys!

Link:
http://www.thundercoast.com/simple-shaders.php

Ever wonder how annoying it was to search the internet on how to create or find a simple shader that doesn’t have all these fancy pointless gadgets? I know I did…I spent hours!

Well look no more! This link has 6 free shaders that you can download and implement into your game!

  • Opaque
  • Transparent
  • Cutout
  • Opaque(Outlined)
  • Transparent(Double Sided)
  • Cutout(DoubleSided)

What is so special about these shaders?

Each shader supports textures, object coloring, vertex coloring, and they’re all unlit!

But why should I use an unlit shader…?
Well lighting effects can be really heavy for your game, so vertex colors are used to give shadow and color contrast illusions.

They are the 6 basic shaders that all simple graphic games should have, 6 shaders that will do every single job you want.

Regards,

Corey S.

You multiply _Color twice in your Opaque shader:

v2f vert (appdata_t v)
{
     o.color = v.color * _Color;
}

fixed4 frag (v2f i) : COLOR
{
     fixed4 col = tex2D(_MainTex, i.texcoord) * i.color *_Color;;
}

thanks mate ill have a gander at this :slight_smile: It worked fine so I guessed I missed that.

Hey guys the link is broken - are these shaders still available somewhere?

bro i need this . please the link is broken. help me here