Sprite-Lit-Default.shader 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. Shader "Universal Render Pipeline/2D/Sprite-Lit-Default"
  2. {
  3. Properties
  4. {
  5. _MainTex("Diffuse", 2D) = "white" {}
  6. _MaskTex("Mask", 2D) = "white" {}
  7. _NormalMap("Normal Map", 2D) = "bump" {}
  8. // Legacy properties. They're here so that materials using this shader can gracefully fallback to the legacy sprite shader.
  9. [HideInInspector] _Color("Tint", Color) = (1,1,1,1)
  10. [HideInInspector] _RendererColor("RendererColor", Color) = (1,1,1,1)
  11. [HideInInspector] _Flip("Flip", Vector) = (1,1,1,1)
  12. [HideInInspector] _AlphaTex("External Alpha", 2D) = "white" {}
  13. [HideInInspector] _EnableExternalAlpha("Enable External Alpha", Float) = 0
  14. }
  15. HLSLINCLUDE
  16. #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
  17. ENDHLSL
  18. SubShader
  19. {
  20. Tags {"Queue" = "Transparent" "RenderType" = "Transparent" "RenderPipeline" = "UniversalPipeline" }
  21. Blend SrcAlpha OneMinusSrcAlpha
  22. Cull Off
  23. ZWrite Off
  24. Pass
  25. {
  26. Tags { "LightMode" = "Universal2D" }
  27. HLSLPROGRAM
  28. #pragma prefer_hlslcc gles
  29. #pragma vertex CombinedShapeLightVertex
  30. #pragma fragment CombinedShapeLightFragment
  31. #pragma multi_compile USE_SHAPE_LIGHT_TYPE_0 __
  32. #pragma multi_compile USE_SHAPE_LIGHT_TYPE_1 __
  33. #pragma multi_compile USE_SHAPE_LIGHT_TYPE_2 __
  34. #pragma multi_compile USE_SHAPE_LIGHT_TYPE_3 __
  35. struct Attributes
  36. {
  37. float3 positionOS : POSITION;
  38. float4 color : COLOR;
  39. float2 uv : TEXCOORD0;
  40. };
  41. struct Varyings
  42. {
  43. float4 positionCS : SV_POSITION;
  44. float4 color : COLOR;
  45. float2 uv : TEXCOORD0;
  46. float2 lightingUV : TEXCOORD1;
  47. };
  48. #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/LightingUtility.hlsl"
  49. TEXTURE2D(_MainTex);
  50. SAMPLER(sampler_MainTex);
  51. TEXTURE2D(_MaskTex);
  52. SAMPLER(sampler_MaskTex);
  53. TEXTURE2D(_NormalMap);
  54. SAMPLER(sampler_NormalMap);
  55. half4 _MainTex_ST;
  56. half4 _NormalMap_ST;
  57. #if USE_SHAPE_LIGHT_TYPE_0
  58. SHAPE_LIGHT(0)
  59. #endif
  60. #if USE_SHAPE_LIGHT_TYPE_1
  61. SHAPE_LIGHT(1)
  62. #endif
  63. #if USE_SHAPE_LIGHT_TYPE_2
  64. SHAPE_LIGHT(2)
  65. #endif
  66. #if USE_SHAPE_LIGHT_TYPE_3
  67. SHAPE_LIGHT(3)
  68. #endif
  69. Varyings CombinedShapeLightVertex(Attributes v)
  70. {
  71. Varyings o = (Varyings)0;
  72. o.positionCS = TransformObjectToHClip(v.positionOS);
  73. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  74. float4 clipVertex = o.positionCS / o.positionCS.w;
  75. o.lightingUV = ComputeScreenPos(clipVertex).xy;
  76. o.color = v.color;
  77. return o;
  78. }
  79. #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/CombinedShapeLightShared.hlsl"
  80. half4 CombinedShapeLightFragment(Varyings i) : SV_Target
  81. {
  82. half4 main = i.color * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv);
  83. half4 mask = SAMPLE_TEXTURE2D(_MaskTex, sampler_MaskTex, i.uv);
  84. return CombinedShapeLightShared(main, mask, i.lightingUV);
  85. }
  86. ENDHLSL
  87. }
  88. Pass
  89. {
  90. Tags { "LightMode" = "NormalsRendering"}
  91. HLSLPROGRAM
  92. #pragma prefer_hlslcc gles
  93. #pragma vertex NormalsRenderingVertex
  94. #pragma fragment NormalsRenderingFragment
  95. struct Attributes
  96. {
  97. float3 positionOS : POSITION;
  98. float4 color : COLOR;
  99. float2 uv : TEXCOORD0;
  100. float4 tangent : TANGENT;
  101. };
  102. struct Varyings
  103. {
  104. float4 positionCS : SV_POSITION;
  105. float4 color : COLOR;
  106. float2 uv : TEXCOORD0;
  107. float3 normalWS : TEXCOORD1;
  108. float3 tangentWS : TEXCOORD2;
  109. float3 bitangentWS : TEXCOORD3;
  110. };
  111. TEXTURE2D(_MainTex);
  112. SAMPLER(sampler_MainTex);
  113. TEXTURE2D(_NormalMap);
  114. SAMPLER(sampler_NormalMap);
  115. float4 _NormalMap_ST; // Is this the right way to do this?
  116. Varyings NormalsRenderingVertex(Attributes attributes)
  117. {
  118. Varyings o = (Varyings)0;
  119. o.positionCS = TransformObjectToHClip(attributes.positionOS);
  120. o.uv = TRANSFORM_TEX(attributes.uv, _NormalMap);
  121. o.uv = attributes.uv;
  122. o.color = attributes.color;
  123. o.normalWS = TransformObjectToWorldDir(float3(0, 0, -1));
  124. o.tangentWS = TransformObjectToWorldDir(attributes.tangent.xyz);
  125. o.bitangentWS = cross(o.normalWS, o.tangentWS) * attributes.tangent.w;
  126. return o;
  127. }
  128. #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/NormalsRenderingShared.hlsl"
  129. float4 NormalsRenderingFragment(Varyings i) : SV_Target
  130. {
  131. float4 mainTex = i.color * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv);
  132. float3 normalTS = UnpackNormal(SAMPLE_TEXTURE2D(_NormalMap, sampler_NormalMap, i.uv));
  133. return NormalsRenderingShared(mainTex, normalTS, i.tangentWS.xyz, i.bitangentWS.xyz, i.normalWS.xyz);
  134. }
  135. ENDHLSL
  136. }
  137. Pass
  138. {
  139. Tags { "LightMode" = "UniversalForward" "Queue"="Transparent" "RenderType"="Transparent"}
  140. HLSLPROGRAM
  141. #pragma prefer_hlslcc gles
  142. #pragma vertex UnlitVertex
  143. #pragma fragment UnlitFragment
  144. struct Attributes
  145. {
  146. float3 positionOS : POSITION;
  147. float4 color : COLOR;
  148. float2 uv : TEXCOORD0;
  149. };
  150. struct Varyings
  151. {
  152. float4 positionCS : SV_POSITION;
  153. float4 color : COLOR;
  154. float2 uv : TEXCOORD0;
  155. };
  156. TEXTURE2D(_MainTex);
  157. SAMPLER(sampler_MainTex);
  158. float4 _MainTex_ST;
  159. Varyings UnlitVertex(Attributes attributes)
  160. {
  161. Varyings o = (Varyings)0;
  162. o.positionCS = TransformObjectToHClip(attributes.positionOS);
  163. o.uv = TRANSFORM_TEX(attributes.uv, _MainTex);
  164. o.uv = attributes.uv;
  165. o.color = attributes.color;
  166. return o;
  167. }
  168. float4 UnlitFragment(Varyings i) : SV_Target
  169. {
  170. float4 mainTex = i.color * SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv);
  171. return mainTex;
  172. }
  173. ENDHLSL
  174. }
  175. }
  176. Fallback "Sprites/Default"
  177. }