Update runtime code

pull/51/head
hevinci 2022-10-18 12:07:33 +08:00
parent a283c8bbad
commit ccac691701
1 changed files with 4 additions and 1 deletions

View File

@ -953,6 +953,9 @@ namespace YooAsset
/// </summary>
internal bool IsIncludeBundleFile(string fileName)
{
// NOTE : 编辑器模拟模式下始终返回TRUE
if (_playMode == EPlayMode.EditorSimulateMode)
return true;
return _bundleServices.IsIncludeBundleFile(fileName);
}
#endregion