表面着色器(一)

作者:追风剑情 发布于:2021-6-15 13:30 分类:Shader

https://docs.unity3d.com/cn/2019.4/Manual/SL-SurfaceShaders.html

一、工程截图

2222.png

二、Shader代码

  1. //https://docs.unity3d.com/cn/2019.4/Manual/SL-SurfaceShaders.html
  2. Shader "Custom/SurfaceShader"
  3. {
  4. Properties
  5. {
  6. //主纹理
  7. _MainTex("Albedo (RGB)", 2D) = "white" {}
  8. //漫反射法线贴图
  9. [NoScaleOffset]
  10. _BumpMap("Normalmap", 2D) = "bump" {}
  11. //混合颜色
  12. _Color ("Color", Color) = (1,1,1,1)
  13. //自发光颜色
  14. _Emission ("Emission", Color) = (1,1,1,1)
  15. //高光颜色
  16. _SpecColor("Specular Color", Color) = (0.5, 0.5, 0.5, 0)
  17. //高光亮度
  18. [PowerSlider(5.0)]
  19. _Shininess("Shininess", Range(0.01, 1)) = 0.078125
  20. }
  21. SubShader
  22. {
  23. Tags { "RenderType"="Transparent" "IgnoreProjector" = "True" "Queue" = "Transparent" }
  24. LOD 200
  25.  
  26. CGPROGRAM
  27.  
  28. //Lambert、BlinnPhong 这两个光照模型不是基于物理的
  29. //使用这两个光照模型的着色器可在低端硬件上提高渲染速度。
  30. #pragma surface surf BlinnPhong alpha:fade
  31. #pragma target 3.0
  32.  
  33. sampler2D _MainTex;
  34. sampler2D _BumpMap;
  35. fixed4 _Color;
  36. fixed4 _Emission;
  37. half _Shininess;
  38.  
  39. struct Input
  40. {
  41. //主纹理数据
  42. float2 uv_MainTex;
  43. //法线纹理数据
  44. float2 uv_BumpMap;
  45. };
  46.  
  47. //Input: 表面着色器标准输入结构
  48. //SurfaceOutput: 表面着色器标准输出结构
  49. void surf (Input IN, inout SurfaceOutput o)
  50. {
  51. //纹理采样
  52. fixed4 tex = tex2D(_MainTex, IN.uv_MainTex);
  53. //漫反射颜色
  54. o.Albedo = tex.rgb * _Color.rgb;
  55. //透明度
  56. o.Alpha = tex.a * _Color.a;
  57. //表面光泽度 (值越大镜面反射越强)
  58. o.Gloss = tex.a;
  59. //高光亮度
  60. o.Specular = _Shininess;
  61. //自发光颜色
  62. o.Emission = _Emission;
  63. //法线
  64. o.Normal = UnpackNormal(tex2D(_BumpMap, IN.uv_BumpMap));
  65. }
  66. ENDCG
  67. }
  68. FallBack "Diffuse"
  69. }


三、效果

11111.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号