Shader——创建Phong高光类型

作者:追风剑情 发布于:2015-9-19 19:28 分类:Shader

      Phong高光模型是最基础且表现最友好的调光类型。它会计算出光在物体表面的反射方向与观察者视线方向之间的对比结果。它是一种非常常见的调光模型,从游戏到电影都有诸多应用。虽然在镜面反射的精确建模上它并不是最接近现实的,但在大多数情况下它都显得极为逼真。另外,如果你的观察对象是远离相机的而且不需要对高光进行精确计算的时候,Phong高光模型是表现着色器高光效果最好的方式之一。

      Unity已经为我们提供了一系列可以使用的光照函数,但是为了正确地使用它们,你还必须使用相对应的正确参数。参照下面的表格:

类型 函数参数
非视点相关型 half4 Lighting+你选择的函数名(SurfaceOutput s, half3 lightDir, half atten)
视点相关型 half4 Lighting+你选择的函数名(SurfaceOutput s, half3 lightDir, half3 viewDir, half atten)

一、创建Shader

  1. Shader "Custom/ShaderPhong" {
  2. Properties {
  3. _MainTint ("Diffuse Tint", Color) = (1,1,1,1)
  4. _MainTex ("Base (RGB)", 2D) = "white" {}
  5. _SpecularColor ("Specular Color", Color) = (1,1,1,1)
  6. _SpecPower ("Specular Power", Range(0, 30)) = 1
  7. }
  8. SubShader {
  9. Tags { "RenderType"="Opaque" }
  10. LOD 200
  11. CGPROGRAM
  12. #pragma surface surf Phong
  13.  
  14. float4 _SpecularColor;
  15. sampler2D _MainTex;
  16. float4 _MainTint;
  17. float _SpecPower;
  18.  
  19. struct Input {
  20. float2 uv_MainTex;
  21. };
  22. //自定义光照模型(Phong高光)
  23. inline fixed4 LightingPhong (SurfaceOutput s, fixed3 lightDir, half3 viewDir, fixed atten)
  24. {
  25. //漫反射组件(diff) = 顶点法线与光的入射方向的点积
  26. //diff=1 : 表明物体是正对着光源方向的
  27. //diff=-1 : 表明物体是背对着光源方向的
  28. float diff = dot(s.Normal, lightDir);
  29. //反射向量(reflectionVector)
  30. //先对顶点法线向量值进行缩放,将该值乘以2.0后再乘以diff值,得到的值减去光照的方向向量值。
  31. //这样做的原因是为了实现法线朝向光源弯曲的效果,所以作为一个远离光源的法线向量,它将被强制朝向光源方向。
  32. float3 reflectionVector = normalize(2.0 * s.Normal * diff - lightDir);
  33. float spec = pow(max(0, dot(reflectionVector, viewDir)), _SpecPower);
  34. float3 finalSpec = _SpecularColor.rgb * spec;
  35. fixed4 c;
  36. c.rgb = (s.Albedo * _LightColor0.rgb * diff) + (_LightColor0.rgb * finalSpec);
  37. c.a = 1.0;
  38. return c;
  39. }
  40.  
  41. void surf (Input IN, inout SurfaceOutput o) {
  42. half4 c = tex2D (_MainTex, IN.uv_MainTex);
  43. o.Albedo = c.rgb;
  44. o.Alpha = c.a;
  45. }
  46. ENDCG
  47. }
  48. FallBack "Diffuse"
  49. }

二、创建Plane、Material

p2.png

运行效果

p1.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号