From fd4b6794cc7e2f7d8132132b2a7b4c520284e3ad Mon Sep 17 00:00:00 2001 From: hevinci Date: Mon, 26 Dec 2022 00:49:40 +0800 Subject: [PATCH] update samples --- .../Extension Sample/Scripts/Editor/PatchImportWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/YooAsset/Samples~/Extension Sample/Scripts/Editor/PatchImportWindow.cs b/Assets/YooAsset/Samples~/Extension Sample/Scripts/Editor/PatchImportWindow.cs index 184faba..c1c5007 100644 --- a/Assets/YooAsset/Samples~/Extension Sample/Scripts/Editor/PatchImportWindow.cs +++ b/Assets/YooAsset/Samples~/Extension Sample/Scripts/Editor/PatchImportWindow.cs @@ -66,7 +66,7 @@ namespace YooAsset.Editor EditorTools.CopyFile(sourcePath, destPath, true); } { - string fileName = YooAssetSettingsData.GetPatchManifestVersionFileName(patchManifest.PackageName); + string fileName = YooAssetSettingsData.GetPackageVersionFileName(patchManifest.PackageName); string sourcePath = $"{outputDirectory}/{fileName}"; string destPath = $"{AssetBundleBuilderHelper.GetStreamingAssetsFolderPath()}/{fileName}"; EditorTools.CopyFile(sourcePath, destPath, true);