pull/464/head
何冠峰 2025-02-06 11:49:21 +08:00
parent 0b5d16bd0e
commit 38471cdd6c
1 changed files with 8 additions and 1 deletions

View File

@ -201,7 +201,14 @@ namespace YooAsset
return false;
#if UNITY_ANDROID
return bundle.BundleType == (int)EBuildBundleType.RawBundle || bundle.Encrypted;
if (bundle.BundleType == (int)EBuildBundleType.RawBundle || bundle.Encrypted)
{
return _unpackFileSystem.Exists(bundle) == false;
}
else
{
return false;
}
#else
return false;
#endif