ShadowGroup2D.shader 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. Shader "Hidden/ShadowGroup2D"
  2. {
  3. Properties
  4. {
  5. _MainTex("Texture", 2D) = "white" {}
  6. _ShadowStencilGroup("__ShadowStencilGroup", Float) = 1.0
  7. }
  8. SubShader
  9. {
  10. Tags { "RenderType"="Opaque" }
  11. Cull Off
  12. BlendOp Add
  13. Blend One One
  14. ZWrite Off
  15. Pass
  16. {
  17. Stencil
  18. {
  19. Ref [_ShadowStencilGroup]
  20. Comp NotEqual
  21. Pass Replace
  22. Fail Keep
  23. }
  24. HLSLPROGRAM
  25. #pragma vertex vert
  26. #pragma fragment frag
  27. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  28. struct Attributes
  29. {
  30. float3 vertex : POSITION;
  31. float4 tangent: TANGENT;
  32. float2 uv : TEXCOORD0;
  33. };
  34. struct Varyings
  35. {
  36. float4 vertex : SV_POSITION;
  37. float4 color : COLOR;
  38. float2 uv : TEXCOORD0;
  39. };
  40. sampler2D _MainTex;
  41. float4 _MainTex_ST;
  42. uniform float3 _LightPos;
  43. uniform float _LightRadius;
  44. Varyings vert (Attributes v)
  45. {
  46. Varyings o;
  47. float3 vertexWS = TransformObjectToWorld(v.vertex); // This should be in world space
  48. float3 lightDir = _LightPos - vertexWS;
  49. lightDir.z = 0;
  50. float3 lightDirection = normalize(lightDir);
  51. float3 endpoint = vertexWS + (_LightRadius * -lightDirection);
  52. float3 worldTangent = TransformObjectToWorldDir(v.tangent.xyz);
  53. float sharedShadowTest = saturate(ceil(dot(lightDirection, worldTangent)));
  54. float3 sharedShadowOffset = sharedShadowTest * _LightRadius * -lightDirection;
  55. float3 position;
  56. position = vertexWS + sharedShadowOffset;
  57. o.vertex = TransformWorldToHClip(position);
  58. // RGB - R is shadow value (to support soft shadows), G is Self Shadow Mask, B is No Shadow Mask
  59. o.color = 1; // v.color;
  60. o.color.g = 0.5;
  61. o.color.b = 0;
  62. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  63. return o;
  64. }
  65. float4 frag (Varyings i) : SV_Target
  66. {
  67. float4 main = tex2D(_MainTex, i.uv);
  68. float4 col = i.color;
  69. col.g = main.a * col.g;
  70. return col;
  71. }
  72. ENDHLSL
  73. }
  74. Pass
  75. {
  76. Stencil
  77. {
  78. Ref [_ShadowStencilGroup]
  79. Comp NotEqual
  80. Pass Replace
  81. Fail Keep
  82. }
  83. HLSLPROGRAM
  84. #pragma vertex vert
  85. #pragma fragment frag
  86. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  87. struct Attributes
  88. {
  89. float3 vertex : POSITION;
  90. float2 uv : TEXCOORD0;
  91. };
  92. struct Varyings
  93. {
  94. float4 vertex : SV_POSITION;
  95. float4 color : COLOR;
  96. float2 uv : TEXCOORD0;
  97. };
  98. sampler2D _MainTex;
  99. float4 _MainTex_ST;
  100. Varyings vert (Attributes v)
  101. {
  102. Varyings o;
  103. o.vertex = TransformObjectToHClip(v.vertex);
  104. // RGB - R is shadow value (to support soft shadows), G is Self Shadow Mask, B is No Shadow Mask
  105. o.color = 1;
  106. o.color.g = 0.5;
  107. o.color.b = 1;
  108. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  109. return o;
  110. }
  111. half4 frag (Varyings i) : SV_Target
  112. {
  113. half4 main = tex2D(_MainTex, i.uv);
  114. half4 color = i.color;
  115. color.b = 1 - main.a;
  116. return color;
  117. }
  118. ENDHLSL
  119. }
  120. }
  121. }