让Sprite支持描边

作者:追风剑情 发布于:2017-5-25 20:05 分类:Shader

参考:http://blog.csdn.net/bulademian/article/details/57082556

一、修改Sprites-Default.shader


  1. Shader "Custom/Sprite-Outline"
  2. {
  3. Properties
  4. {
  5. [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {}
  6. _Color ("Tint", Color) = (1,1,1,1)
  7. [MaterialToggle] PixelSnap ("Pixel snap", Float) = 0
  8. // Add values to determine if outlining is enabled and outline color.
  9. [MaterialToggle] Outline ("Outline", Float) = 0
  10. _OutlineThickness ("Outline Thickness", Float) = 1.0
  11. _OutlineColor ("Outline Color", Color) = (0,1,0,1)
  12. }
  13.  
  14. SubShader
  15. {
  16. Tags
  17. {
  18. "Queue"="Transparent"
  19. "IgnoreProjector"="True"
  20. "RenderType"="Transparent"
  21. "PreviewType"="Plane"
  22. "CanUseSpriteAtlas"="True"
  23. }
  24.  
  25. Cull Off
  26. Lighting Off
  27. ZWrite Off
  28. Blend One OneMinusSrcAlpha
  29.  
  30. Pass
  31. {
  32. CGPROGRAM
  33. #pragma vertex vert
  34. #pragma fragment frag
  35. #pragma target 2.0
  36. #pragma multi_compile _ PIXELSNAP_ON
  37. #pragma multi_compile _ ETC1_EXTERNAL_ALPHA
  38. #include "UnityCG.cginc"
  39. struct appdata_t
  40. {
  41. float4 vertex : POSITION;
  42. float4 color : COLOR;
  43. float2 texcoord : TEXCOORD0;
  44. UNITY_VERTEX_INPUT_INSTANCE_ID
  45. };
  46.  
  47. struct v2f
  48. {
  49. float4 vertex : SV_POSITION;
  50. fixed4 color : COLOR;
  51. float2 texcoord : TEXCOORD0;
  52. UNITY_VERTEX_OUTPUT_STEREO
  53. };
  54. fixed4 _Color;
  55. float Outline;
  56. float _OutlineThickness;
  57. fixed4 _OutlineColor;
  58.  
  59. v2f vert(appdata_t IN)
  60. {
  61. v2f OUT;
  62. UNITY_SETUP_INSTANCE_ID(IN);
  63. UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(OUT);
  64. OUT.vertex = UnityObjectToClipPos(IN.vertex);
  65. OUT.texcoord = IN.texcoord;
  66. OUT.color = IN.color * _Color;
  67. #ifdef PIXELSNAP_ON
  68. OUT.vertex = UnityPixelSnap (OUT.vertex);
  69. #endif
  70.  
  71. return OUT;
  72. }
  73.  
  74. sampler2D _MainTex;
  75. float4 _MainTex_TexelSize;
  76. sampler2D _AlphaTex;
  77.  
  78. fixed4 SampleSpriteTexture (float2 uv)
  79. {
  80. fixed4 color = tex2D (_MainTex, uv);
  81.  
  82. #if ETC1_EXTERNAL_ALPHA
  83. // get the color from an external texture (usecase: Alpha support for ETC1 on android)
  84. color.a = tex2D (_AlphaTex, uv).r;
  85. #endif //ETC1_EXTERNAL_ALPHA
  86.  
  87. return color;
  88. }
  89.  
  90. fixed4 frag(v2f IN) : SV_Target
  91. {
  92. fixed4 c = SampleSpriteTexture (IN.texcoord) * IN.color;
  93. // If outline is enabled and there is a pixel, try to draw an outline.
  94. if (Outline && c.a != 0) {
  95. // Get the neighbouring four pixels.
  96. fixed4 pixelUp = tex2D(_MainTex, IN.texcoord + fixed2(0, _MainTex_TexelSize.y*_OutlineThickness));
  97. fixed4 pixelDown = tex2D(_MainTex, IN.texcoord - fixed2(0, _MainTex_TexelSize.y*_OutlineThickness));
  98. fixed4 pixelRight = tex2D(_MainTex, IN.texcoord + fixed2(_MainTex_TexelSize.x*_OutlineThickness, 0));
  99. fixed4 pixelLeft = tex2D(_MainTex, IN.texcoord - fixed2(_MainTex_TexelSize.x*_OutlineThickness, 0));
  100. // If one of the neighbouring pixels is invisible, we render an outline.
  101. if (pixelUp.a * pixelDown.a * pixelRight.a * pixelLeft.a == 0) {
  102. c.rgba = fixed4(1, 1, 1, 1) * _OutlineColor;
  103. }
  104. }
  105. c.rgb *= c.a;
  106. return c;
  107. }
  108. ENDCG
  109. }
  110. }
  111. }

Outline: 是否启用描边
Outline Thickness: 描边宽度(单位:像素)
Outline Color: 描边颜色

效果

2222.jpg11111.jpg

44444.jpg3333.jpg

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号