CombinedShapeLightShared.hlsl 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #if !defined(COMBINED_SHAPE_LIGHT_PASS)
  2. #define COMBINED_SHAPE_LIGHT_PASS
  3. half _HDREmulationScale;
  4. half _UseSceneLighting;
  5. half4 CombinedShapeLightShared(half4 color, half4 mask, half2 lightingUV)
  6. {
  7. #if USE_SHAPE_LIGHT_TYPE_0
  8. half4 shapeLight0 = SAMPLE_TEXTURE2D(_ShapeLightTexture0, sampler_ShapeLightTexture0, lightingUV);
  9. if (any(_ShapeLightMaskFilter0))
  10. {
  11. float4 processedMask = (1 - _ShapeLightInvertedFilter0) * mask + _ShapeLightInvertedFilter0 * (1 - mask);
  12. shapeLight0 *= dot(processedMask, _ShapeLightMaskFilter0);
  13. }
  14. half4 shapeLight0Modulate = shapeLight0 * _ShapeLightBlendFactors0.x;
  15. half4 shapeLight0Additive = shapeLight0 * _ShapeLightBlendFactors0.y;
  16. #else
  17. half4 shapeLight0Modulate = 0;
  18. half4 shapeLight0Additive = 0;
  19. #endif
  20. #if USE_SHAPE_LIGHT_TYPE_1
  21. half4 shapeLight1 = SAMPLE_TEXTURE2D(_ShapeLightTexture1, sampler_ShapeLightTexture1, lightingUV);
  22. if (any(_ShapeLightMaskFilter1))
  23. {
  24. float4 processedMask = (1 - _ShapeLightInvertedFilter1) * mask + _ShapeLightInvertedFilter1 * (1 - mask);
  25. shapeLight1 *= dot(processedMask, _ShapeLightMaskFilter1);
  26. }
  27. half4 shapeLight1Modulate = shapeLight1 * _ShapeLightBlendFactors1.x;
  28. half4 shapeLight1Additive = shapeLight1 * _ShapeLightBlendFactors1.y;
  29. #else
  30. half4 shapeLight1Modulate = 0;
  31. half4 shapeLight1Additive = 0;
  32. #endif
  33. #if USE_SHAPE_LIGHT_TYPE_2
  34. half4 shapeLight2 = SAMPLE_TEXTURE2D(_ShapeLightTexture2, sampler_ShapeLightTexture2, lightingUV);
  35. if (any(_ShapeLightMaskFilter2))
  36. {
  37. float4 processedMask = (1 - _ShapeLightInvertedFilter2) * mask + _ShapeLightInvertedFilter2 * (1 - mask);
  38. shapeLight2 *= dot(processedMask, _ShapeLightMaskFilter2);
  39. }
  40. half4 shapeLight2Modulate = shapeLight2 * _ShapeLightBlendFactors2.x;
  41. half4 shapeLight2Additive = shapeLight2 * _ShapeLightBlendFactors2.y;
  42. #else
  43. half4 shapeLight2Modulate = 0;
  44. half4 shapeLight2Additive = 0;
  45. #endif
  46. #if USE_SHAPE_LIGHT_TYPE_3
  47. half4 shapeLight3 = SAMPLE_TEXTURE2D(_ShapeLightTexture3, sampler_ShapeLightTexture3, lightingUV);
  48. if (any(_ShapeLightMaskFilter3))
  49. {
  50. float4 processedMask = (1 - _ShapeLightInvertedFilter3) * mask + _ShapeLightInvertedFilter3 * (1 - mask);
  51. shapeLight3 *= dot(processedMask, _ShapeLightMaskFilter3);
  52. }
  53. half4 shapeLight3Modulate = shapeLight3 * _ShapeLightBlendFactors3.x;
  54. half4 shapeLight3Additive = shapeLight3 * _ShapeLightBlendFactors3.y;
  55. #else
  56. half4 shapeLight3Modulate = 0;
  57. half4 shapeLight3Additive = 0;
  58. #endif
  59. half4 finalOutput;
  60. #if !USE_SHAPE_LIGHT_TYPE_0 && !USE_SHAPE_LIGHT_TYPE_1 && !USE_SHAPE_LIGHT_TYPE_2 && ! USE_SHAPE_LIGHT_TYPE_3
  61. finalOutput = color;
  62. #else
  63. half4 finalModulate = shapeLight0Modulate + shapeLight1Modulate + shapeLight2Modulate + shapeLight3Modulate;
  64. half4 finalAdditve = shapeLight0Additive + shapeLight1Additive + shapeLight2Additive + shapeLight3Additive;
  65. finalOutput = _HDREmulationScale * (color * finalModulate + finalAdditve);
  66. #endif
  67. finalOutput.a = color.a;
  68. finalOutput = finalOutput *_UseSceneLighting + (1 - _UseSceneLighting)*color;
  69. return finalOutput;
  70. }
  71. #endif