YooAsset/Docs/ShaderVariantCollector.md

38 lines
1.1 KiB
Markdown
Raw Normal View History

2022-07-27 10:25:46 +08:00
# 着色器变种收集
2022-09-06 14:49:26 +08:00
![image](./Image/ShaderVariantCollector-img1.png)
2022-07-27 10:25:46 +08:00
点击搜集变种按钮开始收集,请耐心等待结束。
### Jenkins支持
```c#
public static void CollectSVC()
{
string savePath = ShaderVariantCollectorSettingData.Setting.SavePath;
2022-07-27 11:05:12 +08:00
System.Action completedCallback = () =>
2022-07-27 10:25:46 +08:00
{
ShaderVariantCollection collection =
AssetDatabase.LoadAssetAtPath<ShaderVariantCollection>(savePath);
if (collection != null)
{
Debug.Log($"ShaderCount : {collection.shaderCount}");
Debug.Log($"VariantCount : {collection.variantCount}");
}
else
{
throw new Exception("Failed to Collect shader Variants.");
}
EditorTools.CloseUnityGameWindow();
EditorApplication.Exit(0);
};
2022-07-27 11:05:12 +08:00
ShaderVariantCollector.Run(savePath, completedCallback);
2022-07-27 10:25:46 +08:00
}
```
```c#
// 命令行调用
%Projects_UnityEngine_Path% -batchmode -projectPath %Projects_UnityProject_Path% -executeMethod ET.CIHelper.CollectSVC -logFile %Projects_UnityProject_Path%/Logs/CIBuildSVC.log
```