Light2D-Point.shader 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. Shader "Hidden/Light2D-Point"
  2. {
  3. Properties
  4. {
  5. [HideInInspector] _SrcBlend("__src", Float) = 1.0
  6. [HideInInspector] _DstBlend("__dst", Float) = 0.0
  7. }
  8. SubShader
  9. {
  10. Tags { "Queue" = "Transparent" "RenderType" = "Transparent" "RenderPipeline" = "UniversalPipeline" }
  11. Pass
  12. {
  13. Blend [_SrcBlend][_DstBlend]
  14. ZWrite Off
  15. Cull Off
  16. HLSLPROGRAM
  17. #pragma prefer_hlslcc gles
  18. #pragma vertex vert
  19. #pragma fragment frag
  20. #pragma multi_compile_local USE_POINT_LIGHT_COOKIES __
  21. #pragma multi_compile_local LIGHT_QUALITY_FAST __
  22. #pragma multi_compile_local USE_NORMAL_MAP __
  23. #pragma multi_compile_local USE_ADDITIVE_BLENDING __
  24. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  25. #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/LightingUtility.hlsl"
  26. struct Attributes
  27. {
  28. float3 positionOS : POSITION;
  29. float2 texcoord : TEXCOORD0;
  30. };
  31. struct Varyings
  32. {
  33. float4 positionCS : SV_POSITION;
  34. float2 uv : TEXCOORD0;
  35. float2 lookupUV : TEXCOORD2; // This is used for light relative direction
  36. float2 lookupNoRotUV : TEXCOORD3; // This is used for screen relative direction of a light
  37. NORMALS_LIGHTING_COORDS(TEXCOORD4, TEXCOORD5)
  38. SHADOW_COORDS(TEXCOORD6)
  39. };
  40. #if USE_POINT_LIGHT_COOKIES
  41. TEXTURE2D(_PointLightCookieTex);
  42. SAMPLER(sampler_PointLightCookieTex);
  43. #endif
  44. TEXTURE2D(_FalloffLookup);
  45. SAMPLER(sampler_FalloffLookup);
  46. float _FalloffIntensity;
  47. TEXTURE2D(_LightLookup);
  48. SAMPLER(sampler_LightLookup);
  49. float4 _LightLookup_TexelSize;
  50. NORMALS_LIGHTING_VARIABLES
  51. SHADOW_VARIABLES
  52. half4 _LightColor;
  53. half4x4 _LightInvMatrix;
  54. half4x4 _LightNoRotInvMatrix;
  55. half _OuterAngle; // 1-0 where 1 is the value at 0 degrees and 1 is the value at 180 degrees
  56. half _InnerAngleMult; // 1-0 where 1 is the value at 0 degrees and 1 is the value at 180 degrees
  57. half _InnerRadiusMult; // 1-0 where 1 is the value at the center and 0 is the value at the outer radius
  58. half _InverseHDREmulationScale;
  59. half _IsFullSpotlight;
  60. Varyings vert(Attributes input)
  61. {
  62. Varyings output = (Varyings)0;
  63. output.positionCS = TransformObjectToHClip(input.positionOS);
  64. output.uv = input.texcoord;
  65. float4 worldSpacePos;
  66. worldSpacePos.xyz = TransformObjectToWorld(input.positionOS);
  67. worldSpacePos.w = 1;
  68. float4 lightSpacePos = mul(_LightInvMatrix, worldSpacePos);
  69. float4 lightSpaceNoRotPos = mul(_LightNoRotInvMatrix, worldSpacePos);
  70. float halfTexelOffset = 0.5 * _LightLookup_TexelSize.x;
  71. output.lookupUV = 0.5 * (lightSpacePos.xy + 1) + halfTexelOffset;
  72. output.lookupNoRotUV = 0.5 * (lightSpaceNoRotPos.xy + 1) + halfTexelOffset;
  73. TRANSFER_NORMALS_LIGHTING(output, worldSpacePos)
  74. TRANSFER_SHADOWS(output)
  75. return output;
  76. }
  77. half4 frag(Varyings input) : SV_Target
  78. {
  79. half4 lookupValueNoRot = SAMPLE_TEXTURE2D(_LightLookup, sampler_LightLookup, input.lookupNoRotUV); // r = distance, g = angle, b = x direction, a = y direction
  80. half4 lookupValue = SAMPLE_TEXTURE2D(_LightLookup, sampler_LightLookup, input.lookupUV); // r = distance, g = angle, b = x direction, a = y direction
  81. // Inner Radius
  82. half attenuation = saturate(_InnerRadiusMult * lookupValueNoRot.r); // This is the code to take care of our inner radius
  83. // Spotlight
  84. half spotAttenuation = saturate((_OuterAngle - lookupValue.g + _IsFullSpotlight) * _InnerAngleMult);
  85. attenuation = attenuation * spotAttenuation;
  86. half2 mappedUV;
  87. mappedUV.x = attenuation;
  88. mappedUV.y = _FalloffIntensity;
  89. attenuation = SAMPLE_TEXTURE2D(_FalloffLookup, sampler_FalloffLookup, mappedUV).r;
  90. #if USE_POINT_LIGHT_COOKIES
  91. half4 cookieColor = SAMPLE_TEXTURE2D(_PointLightCookieTex, sampler_PointLightCookieTex, input.lookupUV);
  92. half4 lightColor = cookieColor * _LightColor;
  93. #else
  94. half4 lightColor = _LightColor;
  95. #endif
  96. #if USE_ADDITIVE_BLENDING
  97. lightColor *= attenuation;
  98. #else
  99. lightColor.a = attenuation;
  100. #endif
  101. APPLY_NORMALS_LIGHTING(input, lightColor);
  102. APPLY_SHADOWS(input, lightColor, _ShadowIntensity);
  103. return lightColor * _InverseHDREmulationScale;
  104. }
  105. ENDHLSL
  106. }
  107. }
  108. }