This commit is contained in:
何冠峰
2025-02-06 11:49:21 +08:00
parent 0b5d16bd0e
commit 38471cdd6c

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