Alpha渐变

作者:追风剑情 发布于:2019-4-19 23:22 分类:Shader

示例

  1. Shader "Custom/Gradient"
  2. {
  3. Properties
  4. {
  5. _MainTex ("Texture", 2D) = "white" {}
  6. _Color("Color", Color) = (1,1,1,1)
  7. _Diameter ("Diameter", Range(0.0, 10.0)) = 2.0
  8. }
  9. SubShader
  10. {
  11. Tags { "Queue" = "Transparent" "RenderType" = "Transparent" }
  12. LOD 100
  13.  
  14. Pass
  15. {
  16. Blend SrcAlpha OneMinusSrcAlpha
  17. CGPROGRAM
  18. #pragma vertex vert
  19. #pragma fragment frag
  20.  
  21. #include "UnityCG.cginc"
  22. uniform fixed4 _Color;
  23. uniform float _Diameter;
  24. uniform float _DistanceInMeters;
  25.  
  26. struct appdata
  27. {
  28. float4 vertex : POSITION;
  29. float2 uv : TEXCOORD0;
  30. };
  31.  
  32. struct v2f
  33. {
  34. float4 uva : TEXCOORD0;
  35. float4 vertex : SV_POSITION;
  36. };
  37.  
  38. sampler2D _MainTex;
  39. float4 _MainTex_ST;
  40.  
  41. v2f vert (appdata v)
  42. {
  43. v2f o;
  44. float scale = lerp(_Diameter, 0, v.vertex.y);
  45. o.vertex = UnityObjectToClipPos(v.vertex);
  46. fixed2 uv = TRANSFORM_TEX(v.uv, _MainTex);
  47. o.uva = float4(uv.x, uv.y, 0, scale);
  48. UNITY_TRANSFER_FOG(o,o.vertex);
  49. return o;
  50. }
  51.  
  52. fixed4 frag (v2f i) : SV_Target
  53. {
  54. // sample the texture
  55. fixed4 col = tex2D(_MainTex, i.uva.xy);
  56. col *= _Color;
  57. col.a = i.uva.a;
  58. return col;
  59. }
  60. ENDCG
  61. }
  62. }
  63. }


效果(渐变的胶囊体)

11111.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号