UGUI—圆形边框效果

作者:追风剑情 发布于:2024-2-1 13:33 分类:Shader

  1. Shader "Custom/UIRoundBorder"
  2. {
  3. Properties
  4. {
  5. //主纹理
  6. _MainTex ("Texture", 2D) = "white" {}
  7. //边框颜色
  8. _Color("Color", Color) = (1, 0, 0, 1)
  9. //外边缘宽度 0~0.5
  10. _NormalMargin("NormalMargin", Range(0, 0.5)) = 0.1
  11. //要挖空的内圆半径范围 0~0.5
  12. _NormalRadius("NormalRadius", Range(0, 0.5)) = 0.4
  13. }
  14. SubShader
  15. {
  16. Tags { "Queue" = "Transparent" "IgnoreProjector" = "true" "RenderType" = "Transparent" }
  17. LOD 100
  18. //开启Alpha混合才能调节透明度
  19. Blend SrcAlpha OneMinusSrcAlpha
  20.  
  21. Pass
  22. {
  23. CGPROGRAM
  24. #pragma vertex vert
  25. #pragma fragment frag
  26.  
  27. #include "UnityCG.cginc"
  28.  
  29. struct appdata
  30. {
  31. float4 vertex : POSITION;
  32. float2 uv : TEXCOORD0;
  33. };
  34.  
  35. struct v2f
  36. {
  37. float2 uv : TEXCOORD0;
  38. float4 vertex : SV_POSITION;
  39. };
  40.  
  41. sampler2D _MainTex;
  42. float4 _MainTex_ST;
  43. fixed4 _Color;
  44. fixed _NormalMargin;
  45. fixed _NormalRadius;
  46.  
  47. v2f vert (appdata v)
  48. {
  49. v2f o;
  50. o.vertex = UnityObjectToClipPos(v.vertex);
  51. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  52. return o;
  53. }
  54.  
  55. fixed4 frag(v2f i) : SV_Target
  56. {
  57. //纹理中心
  58. fixed2 center = fixed2(0.5, 0.5);
  59. //计算uv向量
  60. fixed2 p = i.uv - center;
  61. //向量长度
  62. fixed len = length(p);
  63. //裁剪边缘外的区域
  64. fixed marginRadius = _NormalRadius + _NormalMargin;
  65. //裁剪掉不在边缘内的区域
  66. clip(marginRadius - len);
  67. clip(len - _NormalRadius);
  68. //加个Alpha渐变效果
  69. _Color.a = (marginRadius - len) / _NormalMargin;
  70. return _Color;
  71. }
  72. ENDCG
  73. }
  74. }
  75. }

22222.png

11111.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号