update asset bundle builder

增加对WEBGL平台加密选项的检测。
This commit is contained in:
hevinci
2023-04-20 17:56:21 +08:00
parent 1471ca06f3
commit e84e50708b
4 changed files with 13 additions and 3 deletions

View File

@@ -40,6 +40,16 @@ namespace YooAsset.Editor
throw new Exception("首包资源标签不能为空!");
}
#if UNITY_WEBGL
if (buildParameters.EncryptionServices != null)
{
if (buildParameters.EncryptionServices.GetType() != typeof(EncryptionNone))
{
throw new Exception("WebGL平台不支持加密");
}
}
#endif
// 检测包裹输出目录是否存在
string packageOutputDirectory = buildParametersContext.GetPackageOutputDirectory();
if (Directory.Exists(packageOutputDirectory))