Shader——Unity内置的高光模型BlinnPhong

作者:追风剑情 发布于:2015-9-8 21:22 分类:Shader

一、创建Shader

  1. Shader "Custom/ShaderBlinnPhong" {
  2. Properties {
  3. _MainTex ("Base (RGB)", 2D) = "white" {}
  4. _MainTint ("Diffuse Tint", Color) = (1,1,1,1)
  5. _SpecColor ("Specular Color", Color) = (1,1,1,1)
  6. _SpecPower ("Specular Power", Range(0, 1)) = 0.5
  7. }
  8. SubShader {
  9. Tags { "RenderType"="Opaque" }
  10. LOD 200
  11. CGPROGRAM
  12. //内置的高光模型BlinnPhong(镜面反射光照模型)
  13. //放在Unity安装目录Data文件夹下的UnityCG.cginc文件里在。
  14. #pragma surface surf BlinnPhong
  15.  
  16. sampler2D _MainTex;
  17. float4 _MainTint;
  18. //_SpecColor: 在内置的高光模型中Unity已经为我们声明了该变量。
  19. fixed _SpecPower;
  20.  
  21. struct Input {
  22. float2 uv_MainTex;
  23. };
  24.  
  25. void surf (Input IN, inout SurfaceOutput o) {
  26. half4 c = tex2D (_MainTex, IN.uv_MainTex) * _MainTint;
  27. o.Specular = _SpecPower;//高光强度
  28. o.Gloss = 1.0;//光泽度
  29. o.Albedo = c.rgb;
  30. o.Alpha = c.a;
  31. }
  32. ENDCG
  33. }
  34. FallBack "Diffuse"
  35. }

二、创建Plane和Sphere

b2.png

运行效果

b1.pngSpecular Power值越小光点范围越大。

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号