Update YooAssetDriver

在游戏对象销毁的时候释放YooAssets
pull/40/head
hevinci 2022-09-21 11:36:28 +08:00
parent 95924868f7
commit a89127df1d
2 changed files with 22 additions and 14 deletions

View File

@ -9,6 +9,11 @@ namespace YooAsset
YooAssets.InternalUpdate();
}
void OnDestroy()
{
YooAssets.InternalDestroy();
}
void OnApplicationQuit()
{
YooAssets.InternalDestroy();

View File

@ -1071,6 +1071,8 @@ namespace YooAsset
#region 内部方法
internal static void InternalDestroy()
{
if (_isInitialize)
{
_isInitialize = false;
_initializeError = string.Empty;
@ -1088,6 +1090,7 @@ namespace YooAsset
AssetSystem.DestroyAll();
YooLogger.Log("YooAssets destroy all !");
}
}
internal static void InternalUpdate()
{
OperationSystem.Update();
@ -1136,7 +1139,7 @@ namespace YooAsset
private static void DebugCheckUpdateManifest()
{
var loadedBundleInfos = AssetSystem.GetLoadedBundleInfos();
if(loadedBundleInfos.Count > 0)
if (loadedBundleInfos.Count > 0)
{
YooLogger.Warning($"Found loaded bundle before update manifest ! Recommended to call the {nameof(ForceUnloadAllAssets)} method to release loaded bundle !");
}