From b3fcbf85ff0984f4930ce55eccdd95916c394f49 Mon Sep 17 00:00:00 2001 From: hevinci Date: Wed, 23 Mar 2022 18:23:15 +0800 Subject: [PATCH] Update Utility --- Assets/YooAsset/Runtime/Utility/YooHelper.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/YooAsset/Runtime/Utility/YooHelper.cs b/Assets/YooAsset/Runtime/Utility/YooHelper.cs index 341d0d5..21797cf 100644 --- a/Assets/YooAsset/Runtime/Utility/YooHelper.cs +++ b/Assets/YooAsset/Runtime/Utility/YooHelper.cs @@ -146,7 +146,7 @@ namespace YooAsset /// public static void DeleteSandboxPatchManifestFile() { - string filePath = PathHelper.MakePersistentLoadPath(ResourceSettingData.Setting.PatchManifestFileName); + string filePath = PathHelper.MakePersistentLoadPath(YooAssetSettingsData.Setting.PatchManifestFileName); if (File.Exists(filePath)) File.Delete(filePath); } @@ -194,7 +194,7 @@ namespace YooAsset /// public static bool CheckSandboxPatchManifestFileExist() { - string filePath = PathHelper.MakePersistentLoadPath(ResourceSettingData.Setting.PatchManifestFileName); + string filePath = PathHelper.MakePersistentLoadPath(YooAssetSettingsData.Setting.PatchManifestFileName); return File.Exists(filePath); } @@ -205,7 +205,7 @@ namespace YooAsset /// public static string GetSandboxPatchManifestFileHash() { - string filePath = PathHelper.MakePersistentLoadPath(ResourceSettingData.Setting.PatchManifestFileName); + string filePath = PathHelper.MakePersistentLoadPath(YooAssetSettingsData.Setting.PatchManifestFileName); if (File.Exists(filePath)) return HashUtility.FileMD5(filePath); else