HardSurface Pro Opaque Diffuse.shader 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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 Pro/Opaque Diffuse"{
  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)) = 0
  13. _Metalics("Metalics",Range(0,1)) = .5
  14. _MainTex ("Diffuse(RGB) Alpha(A)",2D) = "White" {}
  15. }
  16. SubShader {
  17. Tags {"Queue"="Geometry+200" "RenderType"="Opaque" "IgnoreProjector"="False" }
  18. UsePass "Hidden/Hardsurface Pro Front Opaque Diffuse/FORWARD"
  19. GrabPass {
  20. Tags {"LightMode" = "Always"}
  21. }
  22. Tags {"Queue"="Transparent" "IgnoreProjector"="False" "RenderType"="Transparent" "LightMode" = "Always"}
  23. UsePass "Hidden/Hardsurface Pro ScreenSpace Reflection/SSREFLECTIONBUMP"
  24. }
  25. Fallback "Diffuse"
  26. }