颜色通道遮罩(ColorMask)

作者:追风剑情 发布于:2018-12-27 11:39 分类:Shader

示例

  1. Shader "Custom/ColorMaskTest"
  2. {
  3. Properties
  4. {
  5. _MainTex ("Texture", 2D) = "white" {}
  6. //_ColorMask ABGR(1-2-4-8)
  7. //0表示不写入颜色通道到颜色缓冲区
  8. _ColorMask ("Color Mask", Float) = 15
  9. [Enum(UnityEngine.Rendering.CompareFunction)] _ZTest("ZTest", Float) = 4
  10. }
  11. SubShader
  12. {
  13. Tags { "RenderType"="Opaque" }
  14. LOD 100
  15.  
  16. //Cull Off
  17. //Lighting Off
  18. //ZWrite Off
  19. //Blend SrcAlpha OneMinusSrcAlpha
  20. ZTest [_ZTest]
  21. //向颜色缓冲区写入颜色通道值(0: 不写入)
  22. //ColorMask RGBA
  23. ColorMask [_ColorMask]
  24.  
  25. Pass
  26. {
  27. CGPROGRAM
  28. #pragma vertex vert
  29. #pragma fragment frag
  30. // make fog work
  31. #pragma multi_compile_fog
  32. #include "UnityCG.cginc"
  33.  
  34. struct appdata
  35. {
  36. float4 vertex : POSITION;
  37. float2 uv : TEXCOORD0;
  38. };
  39.  
  40. struct v2f
  41. {
  42. float2 uv : TEXCOORD0;
  43. UNITY_FOG_COORDS(1)
  44. float4 vertex : SV_POSITION;
  45. };
  46.  
  47. sampler2D _MainTex;
  48. float4 _MainTex_ST;
  49. v2f vert (appdata v)
  50. {
  51. v2f o;
  52. o.vertex = UnityObjectToClipPos(v.vertex);
  53. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  54. UNITY_TRANSFER_FOG(o,o.vertex);
  55. return o;
  56. }
  57. fixed4 frag (v2f i) : SV_Target
  58. {
  59. // sample the texture
  60. fixed4 col = tex2D(_MainTex, i.uv);
  61. // apply fog
  62. UNITY_APPLY_FOG(i.fogCoord, col);
  63. return col;
  64. }
  65. ENDCG
  66. }
  67. }
  68. }

效果

2222.png33333.png

444.png555.png

6666.png777.png

8888.png9999.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号