pull/51/head
hevinci 2022-11-26 15:14:46 +08:00
parent ebc25c401d
commit fd1edcdedf
1 changed files with 2 additions and 2 deletions

View File

@ -47,9 +47,9 @@ namespace YooAsset
OperationSystem.Update(); OperationSystem.Update();
DownloadSystem.Update(); DownloadSystem.Update();
foreach (var package in _packages) for (int i = 0; i < _packages.Count; i++)
{ {
package.UpdatePackage(); _packages[i].UpdatePackage();
} }
} }
} }