Update SahderVariantCollect

Update SahderVariantCollect
This commit is contained in:
ALEXTANG
2024-04-24 11:17:38 +08:00
parent e69dc47b8f
commit dff043e075
2 changed files with 11 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ public class ShaderVariantCollectionManifest
}
[Serializable]
public class ShaderVariantInfo
public class ShaderVariantInfo : IComparable<ShaderVariantInfo>
{
/// <summary>
/// 着色器资源路径.
@@ -46,6 +46,13 @@ public class ShaderVariantCollectionManifest
/// 着色器变种列表
/// </summary>
public List<ShaderVariantElement> ShaderVariantElements = new List<ShaderVariantElement>(1000);
public int CompareTo(ShaderVariantInfo other)
{
string thisStr = AssetPath + "+" +ShaderName;
string otherStr = other.AssetPath + "+" + other.ShaderName;
return thisStr.CompareTo(otherStr);
}
}
@@ -141,6 +148,8 @@ public class ShaderVariantCollectionManifest
}
}
// 重新排序
manifest.ShaderVariantInfos.Sort();
return manifest;
}
}

View File

@@ -22,7 +22,7 @@ public static class ShaderVariantCollector
}
private const float WaitMilliseconds = 1000f;
private const float SleepMilliseconds = 100f;
private const float SleepMilliseconds = 2000f;
private static string _savePath;
private static string _packageName;
private static int _processMaxNum;