update extension sample

pull/464/head
何冠峰 2025-02-06 16:44:25 +08:00
parent 20c07af504
commit 644e6655ff
2 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ public class CopyBuildinManifestOperation : GameAsyncOperation
private string GetBuildinYooRoot()
{
return YooAssetSettingsData.GetYooMobileBuildinRoot();
return YooAssetSettingsData.GetYooDefaultBuildinRoot();
}
private string GetBuildinHashFilePath()
{
@ -140,7 +140,7 @@ public class CopyBuildinManifestOperation : GameAsyncOperation
private string GetCacheYooRoot()
{
return YooAssetSettingsData.GetYooMobileCacheRoot();
return YooAssetSettingsData.GetYooDefaultCacheRoot();
}
private string GetCacheHashFilePath()
{

View File

@ -63,7 +63,7 @@ public class GetCacheBundleSizeOperation : GameAsyncOperation
private string GetCacheDirectoryRoot()
{
string rootDirectory = YooAssetSettingsData.GetYooMobileCacheRoot();
string rootDirectory = YooAssetSettingsData.GetYooDefaultCacheRoot();
string packageRoot = PathUtility.Combine(rootDirectory, _packageName);
return PathUtility.Combine(packageRoot, DefaultCacheFileSystemDefine.BundleFilesFolderName);
}