HardSurface Free Opaque Bump.shader 970 B

123456789101112131415161718192021222324252627
  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/Opaque Bump"{
  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. _BumpMap ("Normalmap", 2D) = "Bump" {}
  16. }
  17. SubShader {
  18. Tags {"Queue"="Geometry" "RenderType"="Opaque" "IgnoreProjector"="False" }
  19. UsePass "Hidden/Hardsurface Pro Front Opaque Bump/FORWARD"
  20. }
  21. Fallback "Diffuse"
  22. }