Light2D-Shape.shader 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. Shader "Hidden/Light2D-Shape"
  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 SPRITE_LIGHT __
  21. #pragma multi_compile_local USE_NORMAL_MAP __
  22. #pragma multi_compile_local USE_ADDITIVE_BLENDING __
  23. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  24. #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/LightingUtility.hlsl"
  25. struct Attributes
  26. {
  27. float3 positionOS : POSITION;
  28. float4 color : COLOR;
  29. #ifdef SPRITE_LIGHT
  30. float2 uv : TEXCOORD0;
  31. #endif
  32. };
  33. struct Varyings
  34. {
  35. float4 positionCS : SV_POSITION;
  36. float4 color : COLOR;
  37. float2 uv : TEXCOORD0;
  38. SHADOW_COORDS(TEXCOORD1)
  39. NORMALS_LIGHTING_COORDS(TEXCOORD2, TEXCOORD3)
  40. };
  41. float _InverseHDREmulationScale;
  42. float4 _LightColor;
  43. float _FalloffDistance;
  44. float4 _FalloffOffset;
  45. #ifdef SPRITE_LIGHT
  46. TEXTURE2D(_CookieTex); // This can either be a sprite texture uv or a falloff texture
  47. SAMPLER(sampler_CookieTex);
  48. #else
  49. float _FalloffIntensity;
  50. TEXTURE2D(_FalloffLookup);
  51. SAMPLER(sampler_FalloffLookup);
  52. #endif
  53. NORMALS_LIGHTING_VARIABLES
  54. SHADOW_VARIABLES
  55. Varyings vert(Attributes attributes)
  56. {
  57. Varyings o = (Varyings)0;
  58. float3 positionOS = attributes.positionOS;
  59. positionOS.x = positionOS.x + _FalloffDistance * attributes.color.r + (1-attributes.color.a) * _FalloffOffset.x;
  60. positionOS.y = positionOS.y + _FalloffDistance * attributes.color.g + (1-attributes.color.a) * _FalloffOffset.y;
  61. o.positionCS = TransformObjectToHClip(positionOS);
  62. o.color = _LightColor * _InverseHDREmulationScale;
  63. o.color.a = attributes.color.a;
  64. #ifdef SPRITE_LIGHT
  65. o.uv = attributes.uv;
  66. #else
  67. o.uv = float2(o.color.a, _FalloffIntensity);
  68. #endif
  69. float4 worldSpacePos;
  70. worldSpacePos.xyz = TransformObjectToWorld(positionOS);
  71. worldSpacePos.w = 1;
  72. TRANSFER_NORMALS_LIGHTING(o, worldSpacePos)
  73. TRANSFER_SHADOWS(o)
  74. return o;
  75. }
  76. half4 frag(Varyings i) : SV_Target
  77. {
  78. half4 color = i.color;
  79. #if SPRITE_LIGHT
  80. half4 cookie = SAMPLE_TEXTURE2D(_CookieTex, sampler_CookieTex, i.uv);
  81. #if USE_ADDITIVE_BLENDING
  82. color *= cookie * cookie.a;
  83. #else
  84. color *= cookie;
  85. #endif
  86. #else
  87. #if USE_ADDITIVE_BLENDING
  88. color *= SAMPLE_TEXTURE2D(_FalloffLookup, sampler_FalloffLookup, i.uv).r;
  89. #else
  90. color.a = SAMPLE_TEXTURE2D(_FalloffLookup, sampler_FalloffLookup, i.uv).r;
  91. #endif
  92. #endif
  93. APPLY_NORMALS_LIGHTING(i, color);
  94. APPLY_SHADOWS(i, color, _ShadowIntensity);
  95. return color;
  96. }
  97. ENDHLSL
  98. }
  99. }
  100. }