Light2D-Shape-Volumetric.shader 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. Shader "Hidden/Light2D-Shape-Volumetric"
  2. {
  3. SubShader
  4. {
  5. Tags { "RenderType" = "Transparent" "RenderPipeline" = "UniversalPipeline" }
  6. Pass
  7. {
  8. Blend SrcAlpha One
  9. ZWrite Off
  10. ZTest Off
  11. Cull Off
  12. HLSLPROGRAM
  13. #pragma prefer_hlslcc gles
  14. #pragma vertex vert
  15. #pragma fragment frag
  16. #pragma multi_compile_local SPRITE_LIGHT __
  17. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  18. #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/LightingUtility.hlsl"
  19. struct Attributes
  20. {
  21. float3 positionOS : POSITION;
  22. float4 color : COLOR;
  23. float4 volumeColor : TANGENT;
  24. #ifdef SPRITE_LIGHT
  25. half2 uv : TEXCOORD0;
  26. #endif
  27. };
  28. struct Varyings
  29. {
  30. float4 positionCS : SV_POSITION;
  31. float4 color : COLOR;
  32. float2 uv : TEXCOORD0;
  33. SHADOW_COORDS(TEXCOORD1)
  34. };
  35. float4 _LightColor;
  36. float _FalloffDistance;
  37. float4 _FalloffOffset;
  38. float _VolumeOpacity;
  39. float _InverseHDREmulationScale;
  40. #ifdef SPRITE_LIGHT
  41. TEXTURE2D(_CookieTex); // This can either be a sprite texture uv or a falloff texture
  42. SAMPLER(sampler_CookieTex);
  43. #else
  44. uniform float _FalloffIntensity;
  45. TEXTURE2D(_FalloffLookup);
  46. SAMPLER(sampler_FalloffLookup);
  47. #endif
  48. SHADOW_VARIABLES
  49. Varyings vert(Attributes attributes)
  50. {
  51. Varyings o = (Varyings)0;
  52. float3 positionOS = attributes.positionOS;
  53. positionOS.x = positionOS.x + _FalloffDistance * attributes.color.r + (1 - attributes.color.a) * _FalloffOffset.x;
  54. positionOS.y = positionOS.y + _FalloffDistance * attributes.color.g + (1 - attributes.color.a) * _FalloffOffset.y;
  55. o.positionCS = TransformObjectToHClip(positionOS);
  56. o.color = _LightColor * _InverseHDREmulationScale;
  57. o.color.a = _VolumeOpacity;
  58. #ifdef SPRITE_LIGHT
  59. o.uv = attributes.uv;
  60. #else
  61. o.uv = float2(attributes.color.a, _FalloffIntensity);
  62. #endif
  63. TRANSFER_SHADOWS(o)
  64. return o;
  65. }
  66. half4 frag(Varyings i) : SV_Target
  67. {
  68. half4 color = i.color;
  69. #if SPRITE_LIGHT
  70. color *= SAMPLE_TEXTURE2D(_CookieTex, sampler_CookieTex, i.uv);
  71. #else
  72. color.a = i.color.a * SAMPLE_TEXTURE2D(_FalloffLookup, sampler_FalloffLookup, i.uv).r;
  73. #endif
  74. APPLY_SHADOWS(i, color, _ShadowVolumeIntensity);
  75. return color;
  76. }
  77. ENDHLSL
  78. }
  79. }
  80. }