自定义光照模型

作者:追风剑情 发布于:2016-1-17 18:31 分类:Shader

一、创建Shader

  1. Shader "Custom/BlinnPhong" {
  2. Properties {
  3. _MainTex ("Base (RGB)", 2D) = "white" {}
  4. _MainTint ("Diffuse Tint", Color) = (1,1,1,1)//色调
  5. _SpecularColor ("Specular Color", Color) = (1,1,1,1)//高光颜色
  6. _SpecPower ("Specular Power", Range(0.1, 60)) = 3//高光强度
  7. }
  8. SubShader {
  9. Tags { "RenderType"="Opaque" }
  10. LOD 200
  11. CGPROGRAM
  12. //使用自定义光照模型
  13. #pragma surface surf CustomBlinnPhong
  14.  
  15. sampler2D _MainTex;
  16. float4 _MainTint;
  17. float4 _SpecularColor;
  18. float _SpecPower;
  19. //创建自定义光照模型BlinnPhong
  20. inline fixed4 LightingCustomBlinnPhong (SurfaceOutput s, fixed3 lightDir, half3 viewDir, fixed atten)
  21. {
  22. float3 halfVector = normalize(lightDir + viewDir);
  23. float diff = max(0, dot(s.Normal, lightDir));
  24. float nh = max(0, dot(s.Normal, halfVector));
  25. float spec = pow(nh, _SpecPower) * _SpecularColor;
  26. float4 c;
  27. c.rgb = (s.Albedo * _LightColor0.rgb * diff) + (_LightColor0.rgb + _SpecularColor.rgb * spec) * (atten * 2);
  28. c.a = s.Alpha;
  29. return c;
  30. }
  31.  
  32. struct Input {
  33. float2 uv_MainTex;
  34. };
  35.  
  36. void surf (Input IN, inout SurfaceOutput o) {
  37. half4 c = tex2D (_MainTex, IN.uv_MainTex) ;
  38. o.Albedo = c.rgb;
  39. o.Alpha = c.a;
  40. }
  41. ENDCG
  42. }
  43. FallBack "Diffuse"
  44. }

二、创建Shere、Material

bb2.png

三、效果

bb1.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号