Light2D-Point-Volumetric.shader 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. Shader "Hidden/Light2d-Point-Volumetric"
  2. {
  3. SubShader
  4. {
  5. Tags { "Queue" = "Transparent" "RenderType" = "Transparent" "RenderPipeline" = "UniversalPipeline" }
  6. Pass
  7. {
  8. Blend One One
  9. ZWrite Off
  10. Cull Off
  11. HLSLPROGRAM
  12. #pragma prefer_hlslcc gles
  13. #pragma vertex vert
  14. #pragma fragment frag
  15. #pragma multi_compile_local USE_POINT_LIGHT_COOKIES __
  16. #pragma multi_compile_local LIGHT_QUALITY_FAST __
  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. float2 texcoord : TEXCOORD0;
  23. };
  24. struct Varyings
  25. {
  26. float4 positionCS : SV_POSITION;
  27. float2 uv : TEXCOORD0;
  28. float2 screenUV : TEXCOORD1;
  29. float2 lookupUV : TEXCOORD2; // This is used for light relative direction
  30. float2 lookupNoRotUV : TEXCOORD3; // This is used for screen relative direction of a light
  31. #if LIGHT_QUALITY_FAST
  32. float4 lightDirection : TEXCOORD4;
  33. #else
  34. float4 positionWS : TEXCOORD4;
  35. #endif
  36. SHADOW_COORDS(TEXCOORD5)
  37. };
  38. #if USE_POINT_LIGHT_COOKIES
  39. TEXTURE2D(_PointLightCookieTex);
  40. SAMPLER(sampler_PointLightCookieTex);
  41. #endif
  42. TEXTURE2D(_FalloffLookup);
  43. SAMPLER(sampler_FalloffLookup);
  44. float _FalloffIntensity;
  45. TEXTURE2D(_LightLookup);
  46. SAMPLER(sampler_LightLookup);
  47. float4 _LightLookup_TexelSize;
  48. TEXTURE2D(_NormalMap);
  49. SAMPLER(sampler_NormalMap);
  50. half4 _LightColor;
  51. float _VolumeOpacity;
  52. float4 _LightPosition;
  53. half4x4 _LightInvMatrix;
  54. half4x4 _LightNoRotInvMatrix;
  55. half _LightZDistance;
  56. half _OuterAngle; // 1-0 where 1 is the value at 0 degrees and 1 is the value at 180 degrees
  57. half _InnerAngleMult; // 1-0 where 1 is the value at 0 degrees and 1 is the value at 180 degrees
  58. half _InnerRadiusMult; // 1-0 where 1 is the value at the center and 0 is the value at the outer radius
  59. half _InverseHDREmulationScale;
  60. half _IsFullSpotlight;
  61. SHADOW_VARIABLES
  62. Varyings vert(Attributes input)
  63. {
  64. Varyings output = (Varyings)0;
  65. output.positionCS = TransformObjectToHClip(input.positionOS);
  66. output.uv = input.texcoord;
  67. float4 worldSpacePos;
  68. worldSpacePos.xyz = TransformObjectToWorld(input.positionOS);
  69. worldSpacePos.w = 1;
  70. float4 lightSpacePos = mul(_LightInvMatrix, worldSpacePos);
  71. float4 lightSpaceNoRotPos = mul(_LightNoRotInvMatrix, worldSpacePos);
  72. float halfTexelOffset = 0.5 * _LightLookup_TexelSize.x;
  73. output.lookupUV = 0.5 * (lightSpacePos.xy + 1) + halfTexelOffset;
  74. output.lookupNoRotUV = 0.5 * (lightSpaceNoRotPos.xy + 1) + halfTexelOffset;
  75. #if LIGHT_QUALITY_FAST
  76. output.lightDirection.xy = _LightPosition.xy - worldSpacePos.xy;
  77. output.lightDirection.z = _LightZDistance;
  78. output.lightDirection.w = 0;
  79. output.lightDirection.xyz = normalize(output.lightDirection.xyz);
  80. #else
  81. output.positionWS = worldSpacePos;
  82. #endif
  83. float4 clipVertex = output.positionCS / output.positionCS.w;
  84. output.screenUV = ComputeScreenPos(clipVertex).xy;
  85. TRANSFER_SHADOWS(output)
  86. return output;
  87. }
  88. half4 frag(Varyings input) : SV_Target
  89. {
  90. half4 normal = SAMPLE_TEXTURE2D(_NormalMap, sampler_NormalMap, input.screenUV);
  91. half4 lookupValueNoRot = SAMPLE_TEXTURE2D(_LightLookup, sampler_LightLookup, input.lookupNoRotUV); // r = distance, g = angle, b = x direction, a = y direction
  92. half4 lookupValue = SAMPLE_TEXTURE2D(_LightLookup, sampler_LightLookup, input.lookupUV); // r = distance, g = angle, b = x direction, a = y direction
  93. // Inner Radius
  94. half attenuation = saturate(_InnerRadiusMult * lookupValueNoRot.r); // This is the code to take care of our inner radius
  95. // Spotlight
  96. half spotAttenuation = saturate((_OuterAngle - lookupValue.g + _IsFullSpotlight) * _InnerAngleMult);
  97. attenuation = attenuation * spotAttenuation;
  98. half2 mappedUV;
  99. mappedUV.x = attenuation;
  100. mappedUV.y = _FalloffIntensity;
  101. attenuation = SAMPLE_TEXTURE2D(_FalloffLookup, sampler_FalloffLookup, mappedUV).r;
  102. #if USE_POINT_LIGHT_COOKIES
  103. half4 cookieColor = SAMPLE_TEXTURE2D(_PointLightCookieTex, sampler_PointLightCookieTex, input.lookupUV);
  104. half4 lightColor = cookieColor * _LightColor * attenuation;
  105. #else
  106. half4 lightColor = _LightColor * attenuation;
  107. #endif
  108. APPLY_SHADOWS(input, lightColor, _ShadowVolumeIntensity);
  109. return _VolumeOpacity * lightColor * _InverseHDREmulationScale;
  110. }
  111. ENDHLSL
  112. }
  113. }
  114. }