ParticlesUnlitForwardPass.hlsl 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #ifndef UNIVERSAL_PARTICLES_UNLIT_FORWARD_PASS_INCLUDED
  2. #define UNIVERSAL_PARTICLES_UNLIT_FORWARD_PASS_INCLUDED
  3. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Lighting.hlsl"
  4. struct AttributesParticle
  5. {
  6. float4 vertex : POSITION;
  7. float3 normal : NORMAL;
  8. half4 color : COLOR;
  9. #if defined(_FLIPBOOKBLENDING_ON) && !defined(UNITY_PARTICLE_INSTANCING_ENABLED)
  10. float4 texcoords : TEXCOORD0;
  11. float texcoordBlend : TEXCOORD1;
  12. #else
  13. float2 texcoords : TEXCOORD0;
  14. #endif
  15. float4 tangent : TANGENT;
  16. UNITY_VERTEX_INPUT_INSTANCE_ID
  17. };
  18. struct VaryingsParticle
  19. {
  20. half4 color : COLOR;
  21. float2 texcoord : TEXCOORD0;
  22. float4 positionWS : TEXCOORD1;
  23. #ifdef _NORMALMAP
  24. half4 normalWS : TEXCOORD2; // xyz: normal, w: viewDir.x
  25. half4 tangentWS : TEXCOORD3; // xyz: tangent, w: viewDir.y
  26. half4 bitangentWS : TEXCOORD4; // xyz: bitangent, w: viewDir.z
  27. #else
  28. half3 normalWS : TEXCOORD2;
  29. half3 viewDirWS : TEXCOORD3;
  30. #endif
  31. #if defined(_FLIPBOOKBLENDING_ON)
  32. float3 texcoord2AndBlend : TEXCOORD5;
  33. #endif
  34. #if defined(_SOFTPARTICLES_ON) || defined(_FADING_ON) || defined(_DISTORTION_ON)
  35. float4 projectedPosition : TEXCOORD6;
  36. #endif
  37. float3 vertexSH : TEXCOORD8; // SH
  38. float4 clipPos : SV_POSITION;
  39. UNITY_VERTEX_INPUT_INSTANCE_ID
  40. UNITY_VERTEX_OUTPUT_STEREO
  41. };
  42. void InitializeInputData(VaryingsParticle input, half3 normalTS, out InputData output)
  43. {
  44. output = (InputData)0;
  45. output.positionWS = input.positionWS.xyz;
  46. #ifdef _NORMALMAP
  47. half3 viewDirWS = half3(input.normalWS.w, input.tangentWS.w, input.bitangentWS.w);
  48. output.normalWS = TransformTangentToWorld(normalTS,
  49. half3x3(input.tangentWS.xyz, input.bitangentWS.xyz, input.normalWS.xyz));
  50. #else
  51. half3 viewDirWS = input.viewDirWS;
  52. output.normalWS = input.normalWS;
  53. #endif
  54. output.normalWS = NormalizeNormalPerPixel(output.normalWS);
  55. #if SHADER_HINT_NICE_QUALITY
  56. viewDirWS = SafeNormalize(viewDirWS);
  57. #endif
  58. output.viewDirectionWS = viewDirWS;
  59. output.fogCoord = (half)input.positionWS.w;
  60. output.vertexLighting = half3(0.0h, 0.0h, 0.0h);
  61. output.bakedGI = SampleSHPixel(input.vertexSH, output.normalWS);
  62. }
  63. ///////////////////////////////////////////////////////////////////////////////
  64. // Vertex and Fragment functions //
  65. ///////////////////////////////////////////////////////////////////////////////
  66. VaryingsParticle vertParticleUnlit(AttributesParticle input)
  67. {
  68. VaryingsParticle output = (VaryingsParticle)0;
  69. UNITY_SETUP_INSTANCE_ID(input);
  70. UNITY_TRANSFER_INSTANCE_ID(input, output);
  71. UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output);
  72. VertexPositionInputs vertexInput = GetVertexPositionInputs(input.vertex.xyz);
  73. VertexNormalInputs normalInput = GetVertexNormalInputs(input.normal, input.tangent);
  74. // position ws is used to compute eye depth in vertFading
  75. output.positionWS.xyz = vertexInput.positionWS;
  76. output.positionWS.w = ComputeFogFactor(vertexInput.positionCS.z);
  77. output.clipPos = vertexInput.positionCS;
  78. output.color = input.color;
  79. half3 viewDirWS = GetCameraPositionWS() - vertexInput.positionWS;
  80. #if !SHADER_HINT_NICE_QUALITY
  81. viewDirWS = SafeNormalize(viewDirWS);
  82. #endif
  83. #ifdef _NORMALMAP
  84. output.normalWS = half4(normalInput.normalWS, viewDirWS.x);
  85. output.tangentWS = half4(normalInput.tangentWS, viewDirWS.y);
  86. output.bitangentWS = half4(normalInput.bitangentWS, viewDirWS.z);
  87. #else
  88. output.normalWS = normalInput.normalWS;
  89. output.viewDirWS = viewDirWS;
  90. #endif
  91. output.texcoord = input.texcoords.xy;
  92. #ifdef _FLIPBOOKBLENDING_ON
  93. output.texcoord2AndBlend.xy = input.texcoords.zw;
  94. output.texcoord2AndBlend.z = input.texcoordBlend;
  95. #endif
  96. #if defined(_SOFTPARTICLES_ON) || defined(_FADING_ON) || defined(_DISTORTION_ON)
  97. output.projectedPosition = ComputeScreenPos(vertexInput.positionCS);
  98. #endif
  99. return output;
  100. }
  101. half4 fragParticleUnlit(VaryingsParticle input) : SV_Target
  102. {
  103. UNITY_SETUP_INSTANCE_ID(input);
  104. UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input);
  105. float2 uv = input.texcoord;
  106. float3 blendUv = float3(0, 0, 0);
  107. #if defined(_FLIPBOOKBLENDING_ON)
  108. blendUv = input.texcoord2AndBlend;
  109. #endif
  110. float4 projectedPosition = float4(0,0,0,0);
  111. #if defined(_SOFTPARTICLES_ON) || defined(_FADING_ON) || defined(_DISTORTION_ON)
  112. projectedPosition = input.projectedPosition;
  113. #endif
  114. half4 albedo = SampleAlbedo(uv, blendUv, _BaseColor, input.color, projectedPosition, TEXTURE2D_ARGS(_BaseMap, sampler_BaseMap));
  115. half3 normalTS = SampleNormalTS(uv, blendUv, TEXTURE2D_ARGS(_BumpMap, sampler_BumpMap));
  116. #if defined (_DISTORTION_ON)
  117. albedo.rgb = Distortion(albedo, normalTS, _DistortionStrengthScaled, _DistortionBlend, projectedPosition);
  118. #endif
  119. #if defined(_EMISSION)
  120. half3 emission = BlendTexture(TEXTURE2D_ARGS(_EmissionMap, sampler_EmissionMap), uv, blendUv).rgb * _EmissionColor.rgb;
  121. #else
  122. half3 emission = half3(0, 0, 0);
  123. #endif
  124. half3 result = albedo.rgb + emission;
  125. half fogFactor = input.positionWS.w;
  126. result = MixFogColor(result, half3(0, 0, 0), fogFactor);
  127. return half4(result, albedo.a);
  128. }
  129. #endif // UNIVERSAL_PARTICLES_UNLIT_FORWARD_PASS_INCLUDED