ParticlesSimpleLitForwardPass.hlsl 6.2 KB

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