绘制扇形

作者:追风剑情 发布于:2023-5-10 18:19 分类:Shader

1、准备一张圆形图片

这张图片将在Shader中作为遮罩图使用。
下载遮罩图

2、新建Shader

  1. //绘制扇形
  2. Shader "Custom/FanChart"
  3. {
  4. Properties
  5. {
  6. _MainTex ("Texture", 2D) = "white" {}
  7. _Color ("Color", Color) = (1, 0, 0, 1)
  8. _StartAngle ("Start Angle", float) = 0
  9. _EndAngle ("End Angle", float) = 60
  10. }
  11. SubShader
  12. {
  13. Tags { "Queue" = "Transparent" "IgnoreProjector" = "true" "RenderType" = "Transparent" }
  14. LOD 100
  15.  
  16. Pass
  17. {
  18. Tags {"LightMode" = "ForwardBase"}
  19. Blend SrcAlpha OneMinusSrcAlpha
  20.  
  21. CGPROGRAM
  22. #pragma vertex vert
  23. #pragma fragment frag
  24.  
  25. #include "UnityCG.cginc"
  26.  
  27. struct appdata
  28. {
  29. float4 vertex : POSITION;
  30. float2 uv : TEXCOORD0;
  31. };
  32.  
  33. struct v2f
  34. {
  35. float2 uv : TEXCOORD0;
  36. float4 vertex : SV_POSITION;
  37. };
  38.  
  39. sampler2D _MainTex;
  40. float4 _MainTex_ST;
  41. fixed4 _Color;
  42. float _StartAngle;
  43. float _EndAngle;
  44.  
  45. v2f vert (appdata v)
  46. {
  47. v2f o;
  48. o.vertex = UnityObjectToClipPos(v.vertex);
  49. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  50. return o;
  51. }
  52.  
  53. fixed4 frag (v2f i) : SV_Target
  54. {
  55. fixed4 col = tex2D(_MainTex, i.uv);
  56. //夹角
  57. float includedAngle = _EndAngle - _StartAngle;
  58. //角度转弧度
  59. float x1 = UNITY_PI / 180 * _StartAngle;
  60. float x2 = UNITY_PI / 180 * _EndAngle;
  61. //定义起始向量
  62. float2 p1 = float2(cos(x1), sin(x1));
  63. //定义结束向量
  64. float2 p2 = float2(cos(x2), sin(x2));
  65. //纹理中心
  66. fixed2 center = fixed2(0.5, 0.5);
  67. //计算uv向量
  68. fixed2 p = i.uv - center;
  69. //计算p与p1的叉乘
  70. float a = p.x* p1.y - p1.x * p.y;
  71. //计算p与p2的叉乘
  72. float b = p.x* p2.y - p2.x * p.y;
  73. //通过叉乘结果判断p是否在p1与p2向量之间
  74. //向量p1与p2之间的夹角分锐角与钝两种情况判断
  75. if ((includedAngle < 180 && a < 0 && b > 0) || (includedAngle >= 180 && (a < 0 || b > 0)))
  76. return fixed4(_Color.x, _Color.y, _Color.z, col.a);
  77. return fixed4(0,0,0,0);
  78. }
  79. ENDCG
  80. }
  81. }
  82. }

3、新建Material

11111.png

4、新建Image

22222.png

5、改变材质中的参数值

00000.gif

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号