mirror of https://github.com/tuyoogame/YooAsset
parent
95924868f7
commit
a89127df1d
|
@ -9,6 +9,11 @@ namespace YooAsset
|
||||||
YooAssets.InternalUpdate();
|
YooAssets.InternalUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void OnDestroy()
|
||||||
|
{
|
||||||
|
YooAssets.InternalDestroy();
|
||||||
|
}
|
||||||
|
|
||||||
void OnApplicationQuit()
|
void OnApplicationQuit()
|
||||||
{
|
{
|
||||||
YooAssets.InternalDestroy();
|
YooAssets.InternalDestroy();
|
||||||
|
|
|
@ -1071,6 +1071,8 @@ namespace YooAsset
|
||||||
|
|
||||||
#region 内部方法
|
#region 内部方法
|
||||||
internal static void InternalDestroy()
|
internal static void InternalDestroy()
|
||||||
|
{
|
||||||
|
if (_isInitialize)
|
||||||
{
|
{
|
||||||
_isInitialize = false;
|
_isInitialize = false;
|
||||||
_initializeError = string.Empty;
|
_initializeError = string.Empty;
|
||||||
|
@ -1088,6 +1090,7 @@ namespace YooAsset
|
||||||
AssetSystem.DestroyAll();
|
AssetSystem.DestroyAll();
|
||||||
YooLogger.Log("YooAssets destroy all !");
|
YooLogger.Log("YooAssets destroy all !");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
internal static void InternalUpdate()
|
internal static void InternalUpdate()
|
||||||
{
|
{
|
||||||
OperationSystem.Update();
|
OperationSystem.Update();
|
||||||
|
|
Loading…
Reference in New Issue