UGUI——图片边缘虚化

作者:追风剑情 发布于:2024-3-12 19:35 分类:Shader


  1. Shader "Custom/EdgeBlurImage"
  2. {
  3. Properties
  4. {
  5. _MainTex ("Texture", 2D) = "white" {}
  6. _Color("Color", Color) = (1,1,1,1)
  7. _Radius("Radius", Range(0, 1)) = 0.5
  8. }
  9. SubShader
  10. {
  11. Tags { "Queue" = "Transparent" "RenderType" = "Transparent" }
  12. LOD 100
  13.  
  14. Pass
  15. {
  16. Blend SrcAlpha OneMinusSrcAlpha
  17.  
  18. CGPROGRAM
  19. #pragma vertex vert
  20. #pragma fragment frag
  21.  
  22. #include "UnityCG.cginc"
  23.  
  24. struct appdata
  25. {
  26. float4 vertex : POSITION;
  27. float2 uv : TEXCOORD0;
  28. };
  29.  
  30. struct v2f
  31. {
  32. float2 uv : TEXCOORD0;
  33. float4 vertex : SV_POSITION;
  34. };
  35.  
  36. sampler2D _MainTex;
  37. float4 _MainTex_ST;
  38. fixed4 _Color;
  39. float _Radius;
  40.  
  41. v2f vert (appdata v)
  42. {
  43. v2f o;
  44. o.vertex = UnityObjectToClipPos(v.vertex);
  45. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  46. return o;
  47. }
  48.  
  49. fixed4 frag (v2f i) : SV_Target
  50. {
  51. //中心点UV坐标
  52. fixed2 center = fixed2(0.5, 0.5);
  53. //方向向量
  54. fixed2 dir = i.uv - center;
  55. //向量长度[0,1]
  56. fixed len = length(dir) * 2;
  57. //圆环宽度
  58. fixed cw = 1.0 - _Radius;
  59. //当前圆环宽度
  60. fixed cr = len - _Radius;
  61. //当前圆环宽度百分比
  62. fixed cl = cr / cw;
  63. fixed dv = step(0, cr);
  64. fixed a = 1 - cl * dv;
  65.  
  66. fixed4 col = tex2D(_MainTex, i.uv) * _Color;
  67. col.a = a;
  68. return col;
  69. }
  70. ENDCG
  71. }
  72. }
  73. }


效果

11111.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号