diff --git a/Assets/YooAsset/Runtime/PackageSystem/PlayMode/HostPlayModeImpl.cs b/Assets/YooAsset/Runtime/PackageSystem/PlayMode/HostPlayModeImpl.cs index 1e6deff..0687fcc 100644 --- a/Assets/YooAsset/Runtime/PackageSystem/PlayMode/HostPlayModeImpl.cs +++ b/Assets/YooAsset/Runtime/PackageSystem/PlayMode/HostPlayModeImpl.cs @@ -397,8 +397,10 @@ namespace YooAsset continue; } - bundle.HasTag(tags); - neetDownloadList.Add(bundle); + if (bundle.HasTag(tags)) + { + neetDownloadList.Add(bundle); + } } return neetDownloadList;