HardSurface Free Transparent Specular.shader 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //Hard Surface Shader Package, Written for the Unity engine by Bruno Rime: http://www.behance.net/brunorime brunorime@gmail.com
  2. Shader "HardSurface/Hardsurface Free/Transparent Specular"{
  3. Properties {
  4. _Color ("Main Color", Color) = (1,1,1,1)
  5. _SpecColor ("Specular Color", Color) = (1, 1, 1, 1)
  6. _Shininess ("Shininess", Range (0.01, 3)) = 1.5
  7. _Gloss("Gloss", Range (0.00, 1)) = .5
  8. _Reflection("Reflection", Range (0.00, 1)) = 0.5
  9. _Cube ("Reflection Cubemap", Cube) = "Black" { TexGen CubeReflect }
  10. _FrezPow("Fresnel Reflection",Range(0,1024)) = 512
  11. _FrezFalloff("Fresnal/EdgeAlpha Falloff",Range(0,10)) = 4
  12. _EdgeAlpha("Edge Alpha",Range(0,1)) = 1
  13. _Metalics("Metalics",Range(0,1)) = .5
  14. _MainTex ("Diffuse(RGB) Alpha(A)",2D) = "White" {}
  15. _BumpMap ("Normalmap", 2D) = "Bump" {}
  16. _Spec_Gloss_Reflec_Masks("Spec(R),Gloss(G) & Reflec(B) Masks ",2D) = "White" {}
  17. }
  18. SubShader {
  19. // Zprime Frontfaces
  20. Pass {
  21. Tags {"Queue"="Transparent" "IgnoreProjector"="True" "LightMode" = "Always"}
  22. zwrite on Cull back
  23. colormask 0
  24. }
  25. // Front Faces
  26. Tags {"Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
  27. UsePass "Hidden/Hardsurface Pro Front Transparent Specular/FORWARD"
  28. }
  29. Fallback "Diffuse"
  30. }