TMP_ShaderUtilities.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. using UnityEngine;
  2. using System.Linq;
  3. using System.Collections;
  4. namespace TMPro
  5. {
  6. public static class ShaderUtilities
  7. {
  8. // Shader Property IDs
  9. public static int ID_MainTex;
  10. public static int ID_FaceTex;
  11. public static int ID_FaceColor;
  12. public static int ID_FaceDilate;
  13. public static int ID_Shininess;
  14. public static int ID_UnderlayColor;
  15. public static int ID_UnderlayOffsetX;
  16. public static int ID_UnderlayOffsetY;
  17. public static int ID_UnderlayDilate;
  18. public static int ID_UnderlaySoftness;
  19. public static int ID_WeightNormal;
  20. public static int ID_WeightBold;
  21. public static int ID_OutlineTex;
  22. public static int ID_OutlineWidth;
  23. public static int ID_OutlineSoftness;
  24. public static int ID_OutlineColor;
  25. public static int ID_Outline2Color;
  26. public static int ID_Outline2Width;
  27. public static int ID_Padding;
  28. public static int ID_GradientScale;
  29. public static int ID_ScaleX;
  30. public static int ID_ScaleY;
  31. public static int ID_PerspectiveFilter;
  32. public static int ID_Sharpness;
  33. public static int ID_TextureWidth;
  34. public static int ID_TextureHeight;
  35. public static int ID_BevelAmount;
  36. public static int ID_GlowColor;
  37. public static int ID_GlowOffset;
  38. public static int ID_GlowPower;
  39. public static int ID_GlowOuter;
  40. public static int ID_GlowInner;
  41. public static int ID_LightAngle;
  42. public static int ID_EnvMap;
  43. public static int ID_EnvMatrix;
  44. public static int ID_EnvMatrixRotation;
  45. //public static int ID_MaskID;
  46. public static int ID_MaskCoord;
  47. public static int ID_ClipRect;
  48. public static int ID_MaskSoftnessX;
  49. public static int ID_MaskSoftnessY;
  50. public static int ID_VertexOffsetX;
  51. public static int ID_VertexOffsetY;
  52. public static int ID_UseClipRect;
  53. public static int ID_StencilID;
  54. public static int ID_StencilOp;
  55. public static int ID_StencilComp;
  56. public static int ID_StencilReadMask;
  57. public static int ID_StencilWriteMask;
  58. public static int ID_ShaderFlags;
  59. public static int ID_ScaleRatio_A;
  60. public static int ID_ScaleRatio_B;
  61. public static int ID_ScaleRatio_C;
  62. public static string Keyword_Bevel = "BEVEL_ON";
  63. public static string Keyword_Glow = "GLOW_ON";
  64. public static string Keyword_Underlay = "UNDERLAY_ON";
  65. public static string Keyword_Ratios = "RATIOS_OFF";
  66. //public static string Keyword_MASK_OFF = "MASK_OFF";
  67. public static string Keyword_MASK_SOFT = "MASK_SOFT";
  68. public static string Keyword_MASK_HARD = "MASK_HARD";
  69. public static string Keyword_MASK_TEX = "MASK_TEX";
  70. public static string Keyword_Outline = "OUTLINE_ON";
  71. public static string ShaderTag_ZTestMode = "unity_GUIZTestMode";
  72. public static string ShaderTag_CullMode = "_CullMode";
  73. private static float m_clamp = 1.0f;
  74. public static bool isInitialized = false;
  75. /// <summary>
  76. /// Returns a reference to the mobile distance field shader.
  77. /// </summary>
  78. internal static Shader ShaderRef_MobileSDF
  79. {
  80. get
  81. {
  82. if (k_ShaderRef_MobileSDF == null)
  83. k_ShaderRef_MobileSDF = Shader.Find("TextMeshPro/Mobile/Distance Field");
  84. return k_ShaderRef_MobileSDF;
  85. }
  86. }
  87. static Shader k_ShaderRef_MobileSDF;
  88. /// <summary>
  89. /// Returns a reference to the mobile bitmap shader.
  90. /// </summary>
  91. internal static Shader ShaderRef_MobileBitmap
  92. {
  93. get
  94. {
  95. if (k_ShaderRef_MobileBitmap == null)
  96. k_ShaderRef_MobileBitmap = Shader.Find("TextMeshPro/Mobile/Bitmap");
  97. return k_ShaderRef_MobileBitmap;
  98. }
  99. }
  100. static Shader k_ShaderRef_MobileBitmap;
  101. /// <summary>
  102. ///
  103. /// </summary>
  104. static ShaderUtilities()
  105. {
  106. GetShaderPropertyIDs();
  107. }
  108. /// <summary>
  109. ///
  110. /// </summary>
  111. public static void GetShaderPropertyIDs()
  112. {
  113. if (isInitialized == false)
  114. {
  115. //Debug.Log("Getting Shader property IDs");
  116. isInitialized = true;
  117. ID_MainTex = Shader.PropertyToID("_MainTex");
  118. ID_FaceTex = Shader.PropertyToID("_FaceTex");
  119. ID_FaceColor = Shader.PropertyToID("_FaceColor");
  120. ID_FaceDilate = Shader.PropertyToID("_FaceDilate");
  121. ID_Shininess = Shader.PropertyToID("_FaceShininess");
  122. ID_UnderlayColor = Shader.PropertyToID("_UnderlayColor");
  123. ID_UnderlayOffsetX = Shader.PropertyToID("_UnderlayOffsetX");
  124. ID_UnderlayOffsetY = Shader.PropertyToID("_UnderlayOffsetY");
  125. ID_UnderlayDilate = Shader.PropertyToID("_UnderlayDilate");
  126. ID_UnderlaySoftness = Shader.PropertyToID("_UnderlaySoftness");
  127. ID_WeightNormal = Shader.PropertyToID("_WeightNormal");
  128. ID_WeightBold = Shader.PropertyToID("_WeightBold");
  129. ID_OutlineTex = Shader.PropertyToID("_OutlineTex");
  130. ID_OutlineWidth = Shader.PropertyToID("_OutlineWidth");
  131. ID_OutlineSoftness = Shader.PropertyToID("_OutlineSoftness");
  132. ID_OutlineColor = Shader.PropertyToID("_OutlineColor");
  133. ID_Outline2Color = Shader.PropertyToID("_Outline2Color");
  134. ID_Outline2Width = Shader.PropertyToID("_Outline2Width");
  135. ID_Padding = Shader.PropertyToID("_Padding");
  136. ID_GradientScale = Shader.PropertyToID("_GradientScale");
  137. ID_ScaleX = Shader.PropertyToID("_ScaleX");
  138. ID_ScaleY = Shader.PropertyToID("_ScaleY");
  139. ID_PerspectiveFilter = Shader.PropertyToID("_PerspectiveFilter");
  140. ID_Sharpness = Shader.PropertyToID("_Sharpness");
  141. ID_TextureWidth = Shader.PropertyToID("_TextureWidth");
  142. ID_TextureHeight = Shader.PropertyToID("_TextureHeight");
  143. ID_BevelAmount = Shader.PropertyToID("_Bevel");
  144. ID_LightAngle = Shader.PropertyToID("_LightAngle");
  145. ID_EnvMap = Shader.PropertyToID("_Cube");
  146. ID_EnvMatrix = Shader.PropertyToID("_EnvMatrix");
  147. ID_EnvMatrixRotation = Shader.PropertyToID("_EnvMatrixRotation");
  148. ID_GlowColor = Shader.PropertyToID("_GlowColor");
  149. ID_GlowOffset = Shader.PropertyToID("_GlowOffset");
  150. ID_GlowPower = Shader.PropertyToID("_GlowPower");
  151. ID_GlowOuter = Shader.PropertyToID("_GlowOuter");
  152. ID_GlowInner = Shader.PropertyToID("_GlowInner");
  153. //ID_MaskID = Shader.PropertyToID("_MaskID");
  154. ID_MaskCoord = Shader.PropertyToID("_MaskCoord");
  155. ID_ClipRect = Shader.PropertyToID("_ClipRect");
  156. ID_UseClipRect = Shader.PropertyToID("_UseClipRect");
  157. ID_MaskSoftnessX = Shader.PropertyToID("_MaskSoftnessX");
  158. ID_MaskSoftnessY = Shader.PropertyToID("_MaskSoftnessY");
  159. ID_VertexOffsetX = Shader.PropertyToID("_VertexOffsetX");
  160. ID_VertexOffsetY = Shader.PropertyToID("_VertexOffsetY");
  161. ID_StencilID = Shader.PropertyToID("_Stencil");
  162. ID_StencilOp = Shader.PropertyToID("_StencilOp");
  163. ID_StencilComp = Shader.PropertyToID("_StencilComp");
  164. ID_StencilReadMask = Shader.PropertyToID("_StencilReadMask");
  165. ID_StencilWriteMask = Shader.PropertyToID("_StencilWriteMask");
  166. ID_ShaderFlags = Shader.PropertyToID("_ShaderFlags");
  167. ID_ScaleRatio_A = Shader.PropertyToID("_ScaleRatioA");
  168. ID_ScaleRatio_B = Shader.PropertyToID("_ScaleRatioB");
  169. ID_ScaleRatio_C = Shader.PropertyToID("_ScaleRatioC");
  170. // Set internal shader references
  171. if (k_ShaderRef_MobileSDF == null)
  172. k_ShaderRef_MobileSDF = Shader.Find("TextMeshPro/Mobile/Distance Field");
  173. if (k_ShaderRef_MobileBitmap == null)
  174. k_ShaderRef_MobileBitmap = Shader.Find("TextMeshPro/Mobile/Bitmap");
  175. }
  176. }
  177. // Scale Ratios to ensure property ranges are optimum in Material Editor
  178. public static void UpdateShaderRatios(Material mat)
  179. {
  180. //Debug.Log("UpdateShaderRatios() called.");
  181. float ratio_A = 1;
  182. float ratio_B = 1;
  183. float ratio_C = 1;
  184. bool isRatioEnabled = !mat.shaderKeywords.Contains(Keyword_Ratios);
  185. if (!mat.HasProperty(ID_GradientScale) || !mat.HasProperty(ID_FaceDilate))
  186. return;
  187. // Compute Ratio A
  188. float scale = mat.GetFloat(ID_GradientScale);
  189. float faceDilate = mat.GetFloat(ID_FaceDilate);
  190. float outlineThickness = mat.GetFloat(ID_OutlineWidth);
  191. float outlineSoftness = mat.GetFloat(ID_OutlineSoftness);
  192. float weight = Mathf.Max(mat.GetFloat(ID_WeightNormal), mat.GetFloat(ID_WeightBold)) / 4.0f;
  193. float t = Mathf.Max(1, weight + faceDilate + outlineThickness + outlineSoftness);
  194. ratio_A = isRatioEnabled ? (scale - m_clamp) / (scale * t) : 1;
  195. //float ratio_A_old = mat.GetFloat(ID_ScaleRatio_A);
  196. // Only set the ratio if it has changed.
  197. //if (ratio_A != ratio_A_old)
  198. mat.SetFloat(ID_ScaleRatio_A, ratio_A);
  199. // Compute Ratio B
  200. if (mat.HasProperty(ID_GlowOffset))
  201. {
  202. float glowOffset = mat.GetFloat(ID_GlowOffset);
  203. float glowOuter = mat.GetFloat(ID_GlowOuter);
  204. float range = (weight + faceDilate) * (scale - m_clamp);
  205. t = Mathf.Max(1, glowOffset + glowOuter);
  206. ratio_B = isRatioEnabled ? Mathf.Max(0, scale - m_clamp - range) / (scale * t) : 1;
  207. //float ratio_B_old = mat.GetFloat(ID_ScaleRatio_B);
  208. // Only set the ratio if it has changed.
  209. //if (ratio_B != ratio_B_old)
  210. mat.SetFloat(ID_ScaleRatio_B, ratio_B);
  211. }
  212. // Compute Ratio C
  213. if (mat.HasProperty(ID_UnderlayOffsetX))
  214. {
  215. float underlayOffsetX = mat.GetFloat(ID_UnderlayOffsetX);
  216. float underlayOffsetY = mat.GetFloat(ID_UnderlayOffsetY);
  217. float underlayDilate = mat.GetFloat(ID_UnderlayDilate);
  218. float underlaySoftness = mat.GetFloat(ID_UnderlaySoftness);
  219. float range = (weight + faceDilate) * (scale - m_clamp);
  220. t = Mathf.Max(1, Mathf.Max(Mathf.Abs(underlayOffsetX), Mathf.Abs(underlayOffsetY)) + underlayDilate + underlaySoftness);
  221. ratio_C = isRatioEnabled ? Mathf.Max(0, scale - m_clamp - range) / (scale * t) : 1;
  222. //float ratio_C_old = mat.GetFloat(ID_ScaleRatio_C);
  223. // Only set the ratio if it has changed.
  224. //if (ratio_C != ratio_C_old)
  225. mat.SetFloat(ID_ScaleRatio_C, ratio_C);
  226. }
  227. }
  228. // Function to calculate padding required for Outline Width & Dilation for proper text alignment
  229. public static Vector4 GetFontExtent(Material material)
  230. {
  231. // Revised implementation where style no longer affects alignment
  232. return Vector4.zero;
  233. /*
  234. if (material == null || !material.HasProperty(ShaderUtilities.ID_GradientScale))
  235. return Vector4.zero; // We are using an non SDF Shader.
  236. float scaleRatioA = material.GetFloat(ID_ScaleRatio_A);
  237. float faceDilate = material.GetFloat(ID_FaceDilate) * scaleRatioA;
  238. float outlineThickness = material.GetFloat(ID_OutlineWidth) * scaleRatioA;
  239. float extent = Mathf.Min(1, faceDilate + outlineThickness);
  240. extent *= material.GetFloat(ID_GradientScale);
  241. return new Vector4(extent, extent, extent, extent);
  242. */
  243. }
  244. // Function to check if Masking is enabled
  245. public static bool IsMaskingEnabled(Material material)
  246. {
  247. if (material == null || !material.HasProperty(ShaderUtilities.ID_ClipRect))
  248. return false;
  249. if (material.shaderKeywords.Contains(ShaderUtilities.Keyword_MASK_SOFT) || material.shaderKeywords.Contains(ShaderUtilities.Keyword_MASK_HARD) || material.shaderKeywords.Contains(ShaderUtilities.Keyword_MASK_TEX))
  250. return true;
  251. return false;
  252. }
  253. // Function to determine how much extra padding is required as a result of material properties like dilate, outline thickness, softness, glow, etc...
  254. public static float GetPadding(Material material, bool enableExtraPadding, bool isBold)
  255. {
  256. //Debug.Log("GetPadding() called.");
  257. if (isInitialized == false)
  258. GetShaderPropertyIDs();
  259. // Return if Material is null
  260. if (material == null) return 0;
  261. int extraPadding = enableExtraPadding ? 4 : 0;
  262. // Check if we are using a non Distance Field Shader
  263. if (material.HasProperty(ID_GradientScale) == false)
  264. {
  265. if (material.HasProperty(ID_Padding))
  266. extraPadding += (int)material.GetFloat(ID_Padding);
  267. return extraPadding + 1.0f;
  268. }
  269. Vector4 padding = Vector4.zero;
  270. Vector4 maxPadding = Vector4.zero;
  271. //float weight = 0;
  272. float faceDilate = 0;
  273. float faceSoftness = 0;
  274. float outlineThickness = 0;
  275. float scaleRatio_A = 0;
  276. float scaleRatio_B = 0;
  277. float scaleRatio_C = 0;
  278. float glowOffset = 0;
  279. float glowOuter = 0;
  280. float uniformPadding = 0;
  281. // Iterate through each of the assigned materials to find the max values to set the padding.
  282. // Update Shader Ratios prior to computing padding
  283. UpdateShaderRatios(material);
  284. string[] shaderKeywords = material.shaderKeywords;
  285. if (material.HasProperty(ID_ScaleRatio_A))
  286. scaleRatio_A = material.GetFloat(ID_ScaleRatio_A);
  287. //weight = 0; // Mathf.Max(material.GetFloat(ID_WeightNormal), material.GetFloat(ID_WeightBold)) / 2.0f * scaleRatio_A;
  288. if (material.HasProperty(ID_FaceDilate))
  289. faceDilate = material.GetFloat(ID_FaceDilate) * scaleRatio_A;
  290. if (material.HasProperty(ID_OutlineSoftness))
  291. faceSoftness = material.GetFloat(ID_OutlineSoftness) * scaleRatio_A;
  292. if (material.HasProperty(ID_OutlineWidth))
  293. outlineThickness = material.GetFloat(ID_OutlineWidth) * scaleRatio_A;
  294. uniformPadding = outlineThickness + faceSoftness + faceDilate;
  295. // Glow padding contribution
  296. if (material.HasProperty(ID_GlowOffset) && shaderKeywords.Contains(Keyword_Glow)) // Generates GC
  297. {
  298. if (material.HasProperty(ID_ScaleRatio_B))
  299. scaleRatio_B = material.GetFloat(ID_ScaleRatio_B);
  300. glowOffset = material.GetFloat(ID_GlowOffset) * scaleRatio_B;
  301. glowOuter = material.GetFloat(ID_GlowOuter) * scaleRatio_B;
  302. }
  303. uniformPadding = Mathf.Max(uniformPadding, faceDilate + glowOffset + glowOuter);
  304. // Underlay padding contribution
  305. if (material.HasProperty(ID_UnderlaySoftness) && shaderKeywords.Contains(Keyword_Underlay)) // Generates GC
  306. {
  307. if (material.HasProperty(ID_ScaleRatio_C))
  308. scaleRatio_C = material.GetFloat(ID_ScaleRatio_C);
  309. float offsetX = material.GetFloat(ID_UnderlayOffsetX) * scaleRatio_C;
  310. float offsetY = material.GetFloat(ID_UnderlayOffsetY) * scaleRatio_C;
  311. float dilate = material.GetFloat(ID_UnderlayDilate) * scaleRatio_C;
  312. float softness = material.GetFloat(ID_UnderlaySoftness) * scaleRatio_C;
  313. padding.x = Mathf.Max(padding.x, faceDilate + dilate + softness - offsetX);
  314. padding.y = Mathf.Max(padding.y, faceDilate + dilate + softness - offsetY);
  315. padding.z = Mathf.Max(padding.z, faceDilate + dilate + softness + offsetX);
  316. padding.w = Mathf.Max(padding.w, faceDilate + dilate + softness + offsetY);
  317. }
  318. padding.x = Mathf.Max(padding.x, uniformPadding);
  319. padding.y = Mathf.Max(padding.y, uniformPadding);
  320. padding.z = Mathf.Max(padding.z, uniformPadding);
  321. padding.w = Mathf.Max(padding.w, uniformPadding);
  322. padding.x += extraPadding;
  323. padding.y += extraPadding;
  324. padding.z += extraPadding;
  325. padding.w += extraPadding;
  326. padding.x = Mathf.Min(padding.x, 1);
  327. padding.y = Mathf.Min(padding.y, 1);
  328. padding.z = Mathf.Min(padding.z, 1);
  329. padding.w = Mathf.Min(padding.w, 1);
  330. maxPadding.x = maxPadding.x < padding.x ? padding.x : maxPadding.x;
  331. maxPadding.y = maxPadding.y < padding.y ? padding.y : maxPadding.y;
  332. maxPadding.z = maxPadding.z < padding.z ? padding.z : maxPadding.z;
  333. maxPadding.w = maxPadding.w < padding.w ? padding.w : maxPadding.w;
  334. float gradientScale = material.GetFloat(ID_GradientScale);
  335. padding *= gradientScale;
  336. // Set UniformPadding to the maximum value of any of its components.
  337. uniformPadding = Mathf.Max(padding.x, padding.y);
  338. uniformPadding = Mathf.Max(padding.z, uniformPadding);
  339. uniformPadding = Mathf.Max(padding.w, uniformPadding);
  340. return uniformPadding + 1.25f;
  341. }
  342. // Function to determine how much extra padding is required as a result of material properties like dilate, outline thickness, softness, glow, etc...
  343. public static float GetPadding(Material[] materials, bool enableExtraPadding, bool isBold)
  344. {
  345. //Debug.Log("GetPadding() called.");
  346. if (isInitialized == false)
  347. GetShaderPropertyIDs();
  348. // Return if Material is null
  349. if (materials == null) return 0;
  350. int extraPadding = enableExtraPadding ? 4 : 0;
  351. // Check if we are using a Bitmap Shader
  352. if (materials[0].HasProperty(ID_Padding))
  353. return extraPadding + materials[0].GetFloat(ID_Padding);
  354. Vector4 padding = Vector4.zero;
  355. Vector4 maxPadding = Vector4.zero;
  356. float faceDilate = 0;
  357. float faceSoftness = 0;
  358. float outlineThickness = 0;
  359. float scaleRatio_A = 0;
  360. float scaleRatio_B = 0;
  361. float scaleRatio_C = 0;
  362. float glowOffset = 0;
  363. float glowOuter = 0;
  364. float uniformPadding = 0;
  365. // Iterate through each of the assigned materials to find the max values to set the padding.
  366. for (int i = 0; i < materials.Length; i++)
  367. {
  368. // Update Shader Ratios prior to computing padding
  369. ShaderUtilities.UpdateShaderRatios(materials[i]);
  370. string[] shaderKeywords = materials[i].shaderKeywords;
  371. if (materials[i].HasProperty(ShaderUtilities.ID_ScaleRatio_A))
  372. scaleRatio_A = materials[i].GetFloat(ShaderUtilities.ID_ScaleRatio_A);
  373. if (materials[i].HasProperty(ShaderUtilities.ID_FaceDilate))
  374. faceDilate = materials[i].GetFloat(ShaderUtilities.ID_FaceDilate) * scaleRatio_A;
  375. if (materials[i].HasProperty(ShaderUtilities.ID_OutlineSoftness))
  376. faceSoftness = materials[i].GetFloat(ShaderUtilities.ID_OutlineSoftness) * scaleRatio_A;
  377. if (materials[i].HasProperty(ShaderUtilities.ID_OutlineWidth))
  378. outlineThickness = materials[i].GetFloat(ShaderUtilities.ID_OutlineWidth) * scaleRatio_A;
  379. uniformPadding = outlineThickness + faceSoftness + faceDilate;
  380. // Glow padding contribution
  381. if (materials[i].HasProperty(ShaderUtilities.ID_GlowOffset) && shaderKeywords.Contains(ShaderUtilities.Keyword_Glow))
  382. {
  383. if (materials[i].HasProperty(ShaderUtilities.ID_ScaleRatio_B))
  384. scaleRatio_B = materials[i].GetFloat(ShaderUtilities.ID_ScaleRatio_B);
  385. glowOffset = materials[i].GetFloat(ShaderUtilities.ID_GlowOffset) * scaleRatio_B;
  386. glowOuter = materials[i].GetFloat(ShaderUtilities.ID_GlowOuter) * scaleRatio_B;
  387. }
  388. uniformPadding = Mathf.Max(uniformPadding, faceDilate + glowOffset + glowOuter);
  389. // Underlay padding contribution
  390. if (materials[i].HasProperty(ShaderUtilities.ID_UnderlaySoftness) && shaderKeywords.Contains(ShaderUtilities.Keyword_Underlay))
  391. {
  392. if (materials[i].HasProperty(ShaderUtilities.ID_ScaleRatio_C))
  393. scaleRatio_C = materials[i].GetFloat(ShaderUtilities.ID_ScaleRatio_C);
  394. float offsetX = materials[i].GetFloat(ShaderUtilities.ID_UnderlayOffsetX) * scaleRatio_C;
  395. float offsetY = materials[i].GetFloat(ShaderUtilities.ID_UnderlayOffsetY) * scaleRatio_C;
  396. float dilate = materials[i].GetFloat(ShaderUtilities.ID_UnderlayDilate) * scaleRatio_C;
  397. float softness = materials[i].GetFloat(ShaderUtilities.ID_UnderlaySoftness) * scaleRatio_C;
  398. padding.x = Mathf.Max(padding.x, faceDilate + dilate + softness - offsetX);
  399. padding.y = Mathf.Max(padding.y, faceDilate + dilate + softness - offsetY);
  400. padding.z = Mathf.Max(padding.z, faceDilate + dilate + softness + offsetX);
  401. padding.w = Mathf.Max(padding.w, faceDilate + dilate + softness + offsetY);
  402. }
  403. padding.x = Mathf.Max(padding.x, uniformPadding);
  404. padding.y = Mathf.Max(padding.y, uniformPadding);
  405. padding.z = Mathf.Max(padding.z, uniformPadding);
  406. padding.w = Mathf.Max(padding.w, uniformPadding);
  407. padding.x += extraPadding;
  408. padding.y += extraPadding;
  409. padding.z += extraPadding;
  410. padding.w += extraPadding;
  411. padding.x = Mathf.Min(padding.x, 1);
  412. padding.y = Mathf.Min(padding.y, 1);
  413. padding.z = Mathf.Min(padding.z, 1);
  414. padding.w = Mathf.Min(padding.w, 1);
  415. maxPadding.x = maxPadding.x < padding.x ? padding.x : maxPadding.x;
  416. maxPadding.y = maxPadding.y < padding.y ? padding.y : maxPadding.y;
  417. maxPadding.z = maxPadding.z < padding.z ? padding.z : maxPadding.z;
  418. maxPadding.w = maxPadding.w < padding.w ? padding.w : maxPadding.w;
  419. }
  420. float gradientScale = materials[0].GetFloat(ShaderUtilities.ID_GradientScale);
  421. padding *= gradientScale;
  422. // Set UniformPadding to the maximum value of any of its components.
  423. uniformPadding = Mathf.Max(padding.x, padding.y);
  424. uniformPadding = Mathf.Max(padding.z, uniformPadding);
  425. uniformPadding = Mathf.Max(padding.w, uniformPadding);
  426. return uniformPadding + 0.25f;
  427. }
  428. }
  429. }