ParticlesLit.shader 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. // ------------------------------------------
  2. // No shadows
  3. Shader "Universal Render Pipeline/Particles/Lit"
  4. {
  5. Properties
  6. {
  7. _BaseMap("Base Map", 2D) = "white" {}
  8. _BaseColor("Base Color", Color) = (1,1,1,1)
  9. _Cutoff("Alpha Cutoff", Range(0.0, 1.0)) = 0.5
  10. _MetallicGlossMap("Metallic Map", 2D) = "white" {}
  11. [Gamma] _Metallic("Metallic", Range(0.0, 1.0)) = 0.0
  12. _Smoothness("Smoothness", Range(0.0, 1.0)) = 0.5
  13. _BumpScale("Scale", Float) = 1.0
  14. _BumpMap("Normal Map", 2D) = "bump" {}
  15. _EmissionColor("Color", Color) = (0,0,0)
  16. _EmissionMap("Emission", 2D) = "white" {}
  17. _ReceiveShadows("Receive Shadows", Float) = 1.0
  18. // -------------------------------------
  19. // Particle specific
  20. _SoftParticlesNearFadeDistance("Soft Particles Near Fade", Float) = 0.0
  21. _SoftParticlesFarFadeDistance("Soft Particles Far Fade", Float) = 1.0
  22. _CameraNearFadeDistance("Camera Near Fade", Float) = 1.0
  23. _CameraFarFadeDistance("Camera Far Fade", Float) = 2.0
  24. _DistortionBlend("Distortion Blend", Float) = 0.5
  25. _DistortionStrength("Distortion Strength", Float) = 1.0
  26. // -------------------------------------
  27. // Hidden properties - Generic
  28. [HideInInspector] _Surface("__surface", Float) = 0.0
  29. [HideInInspector] _Blend("__mode", Float) = 0.0
  30. [HideInInspector] _AlphaClip("__clip", Float) = 0.0
  31. [HideInInspector] _BlendOp("__blendop", Float) = 0.0
  32. [HideInInspector] _SrcBlend("__src", Float) = 1.0
  33. [HideInInspector] _DstBlend("__dst", Float) = 0.0
  34. [HideInInspector] _ZWrite("__zw", Float) = 1.0
  35. [HideInInspector] _Cull("__cull", Float) = 2.0
  36. // Particle specific
  37. [HideInInspector] _ColorMode("_ColorMode", Float) = 0.0
  38. [HideInInspector] _BaseColorAddSubDiff("_ColorMode", Vector) = (0,0,0,0)
  39. [ToggleOff] _FlipbookBlending("__flipbookblending", Float) = 0.0
  40. [HideInInspector] _SoftParticlesEnabled("__softparticlesenabled", Float) = 0.0
  41. [HideInInspector] _CameraFadingEnabled("__camerafadingenabled", Float) = 0.0
  42. [HideInInspector] _SoftParticleFadeParams("__softparticlefadeparams", Vector) = (0,0,0,0)
  43. [HideInInspector] _CameraFadeParams("__camerafadeparams", Vector) = (0,0,0,0)
  44. [HideInInspector] _DistortionEnabled("__distortionenabled", Float) = 0.0
  45. [HideInInspector] _DistortionStrengthScaled("Distortion Strength Scaled", Float) = 0.1
  46. // Editmode props
  47. [HideInInspector] _QueueOffset("Queue offset", Float) = 0.0
  48. // ObsoleteProperties
  49. [HideInInspector] _FlipbookMode("flipbook", Float) = 0
  50. [HideInInspector] _Glossiness("gloss", Float) = 0
  51. [HideInInspector] _Mode("mode", Float) = 0
  52. [HideInInspector] _Color("color", Color) = (1,1,1,1)
  53. }
  54. SubShader
  55. {
  56. Tags{"RenderType" = "Opaque" "IgnoreProjector" = "True" "PreviewType" = "Plane" "PerformanceChecks" = "False" "RenderPipeline" = "UniversalPipeline"}
  57. // ------------------------------------------------------------------
  58. // Forward pass.
  59. Pass
  60. {
  61. // Lightmode matches the ShaderPassName set in UniversalRenderPipeline.cs. SRPDefaultUnlit and passes with
  62. // no LightMode tag are also rendered by Universal Render Pipeline
  63. Name "ForwardLit"
  64. Tags {"LightMode" = "UniversalForward"}
  65. BlendOp[_BlendOp]
  66. Blend[_SrcBlend][_DstBlend]
  67. ZWrite[_ZWrite]
  68. Cull[_Cull]
  69. HLSLPROGRAM
  70. // Required to compile gles 2.0 with standard SRP library
  71. // All shaders must be compiled with HLSLcc and currently only gles is not using HLSLcc by default
  72. #pragma prefer_hlslcc gles
  73. #pragma exclude_renderers d3d11_9x
  74. #pragma target 2.0
  75. // -------------------------------------
  76. // Material Keywords
  77. #pragma shader_feature _NORMALMAP
  78. #pragma shader_feature _EMISSION
  79. #pragma shader_feature _METALLICSPECGLOSSMAP
  80. #pragma shader_feature _RECEIVE_SHADOWS_OFF
  81. // -------------------------------------
  82. // Particle Keywords
  83. #pragma shader_feature _ _ALPHAPREMULTIPLY_ON _ALPHAMODULATE_ON
  84. #pragma shader_feature _ALPHATEST_ON
  85. #pragma shader_feature _ _COLOROVERLAY_ON _COLORCOLOR_ON _COLORADDSUBDIFF_ON
  86. #pragma shader_feature _FLIPBOOKBLENDING_ON
  87. #pragma shader_feature _SOFTPARTICLES_ON
  88. #pragma shader_feature _FADING_ON
  89. #pragma shader_feature _DISTORTION_ON
  90. // -------------------------------------
  91. // Universal Pipeline keywords
  92. #pragma multi_compile _ _MAIN_LIGHT_SHADOWS
  93. #pragma multi_compile _ _MAIN_LIGHT_SHADOWS_CASCADE
  94. #pragma multi_compile _ _ADDITIONAL_LIGHTS_VERTEX _ADDITIONAL_LIGHTS
  95. #pragma multi_compile _ _ADDITIONAL_LIGHT_SHADOWS
  96. #pragma multi_compile _ _SHADOWS_SOFT
  97. // -------------------------------------
  98. // Unity defined keywords
  99. #pragma multi_compile_fog
  100. #pragma vertex ParticlesLitVertex
  101. #pragma fragment ParticlesLitFragment
  102. #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesLitInput.hlsl"
  103. #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesLitForwardPass.hlsl"
  104. ENDHLSL
  105. }
  106. Pass
  107. {
  108. Name "Universal2D"
  109. Tags{ "LightMode" = "Universal2D" }
  110. Blend[_SrcBlend][_DstBlend]
  111. ZWrite[_ZWrite]
  112. Cull[_Cull]
  113. HLSLPROGRAM
  114. // Required to compile gles 2.0 with standard srp library
  115. #pragma prefer_hlslcc gles
  116. #pragma exclude_renderers d3d11_9x
  117. #pragma vertex vert
  118. #pragma fragment frag
  119. #pragma shader_feature _ALPHATEST_ON
  120. #pragma shader_feature _ALPHAPREMULTIPLY_ON
  121. #include "Packages/com.unity.render-pipelines.universal/Shaders/UnlitInput.hlsl"
  122. #include "Packages/com.unity.render-pipelines.universal/Shaders/Utils/Universal2D.hlsl"
  123. ENDHLSL
  124. }
  125. }
  126. Fallback "Universal Render Pipeline/Particles/SimpleLit"
  127. CustomEditor "UnityEditor.Rendering.Universal.ShaderGUI.ParticlesLitShader"
  128. }