update cache system

新增方法YooAssets.SetCacheSystemBuildinPath()
mlyDevMerge1.5.7
hevinci 2023-06-30 18:51:55 +08:00 committed by QiJing
parent fb28bcc535
commit 92246f1043
2 changed files with 32 additions and 3 deletions

View File

@ -16,12 +16,20 @@ namespace YooAsset
private static string _sandboxPath; private static string _sandboxPath;
/// <summary>
/// 重写内置跟路径
/// </summary>
public static void OverwriteBuildinPath(string path)
{
_buildinPath = path;
}
/// <summary> /// <summary>
/// 重写沙盒跟路径 /// 重写沙盒跟路径
/// </summary> /// </summary>
public static void OverwriteSandboxPath(string sandboxPath) public static void OverwriteSandboxPath(string path)
{ {
_sandboxPath = sandboxPath; _sandboxPath = path;
} }
/// <summary> /// <summary>

View File

@ -253,6 +253,27 @@ namespace YooAsset
CacheSystem.InitVerifyLevel = verifyLevel; CacheSystem.InitVerifyLevel = verifyLevel;
} }
/// <summary>
/// 设置缓存系统参数,沙盒目录的存储路径
/// </summary>
public static void SetCacheSystemBuildinPath(string buildinPath)
{
if (string.IsNullOrEmpty(buildinPath))
{
YooLogger.Error($"Buildin path is null or empty !");
return;
}
// 注意:需要确保没有任何资源系统起效之前才可以设置!
if (_packages.Count > 0)
{
YooLogger.Error($"Please call this method {nameof(SetCacheSystemBuildinPath)} before the package is created !");
return;
}
PersistentTools.OverwriteBuildinPath(buildinPath);
}
/// <summary> /// <summary>
/// 设置缓存系统参数,沙盒目录的存储路径 /// 设置缓存系统参数,沙盒目录的存储路径
/// </summary> /// </summary>
@ -264,7 +285,7 @@ namespace YooAsset
return; return;
} }
// 注意:需要确保没有任何资源系统起效之前才可以设置沙盒目录 // 注意:需要确保没有任何资源系统起效之前才可以设置
if (_packages.Count > 0) if (_packages.Count > 0)
{ {
YooLogger.Error($"Please call this method {nameof(SetCacheSystemSandboxPath)} before the package is created !"); YooLogger.Error($"Please call this method {nameof(SetCacheSystemSandboxPath)} before the package is created !");