移除测试日志

This commit is contained in:
ALEXTANG
2023-12-01 17:18:13 +08:00
parent 7ea472f97e
commit 6ada0e7de7

View File

@@ -30,10 +30,6 @@ namespace TEngine
AudioData ret = MemoryPool.Acquire<AudioData>(); AudioData ret = MemoryPool.Acquire<AudioData>();
ret.AssetOperationHandle = assetOperationHandle; ret.AssetOperationHandle = assetOperationHandle;
ret.InPool = inPool; ret.InPool = inPool;
if (!ret.InPool)
{
Log.Error("Is not In Pool");
}
ret.InitFromPool(); ret.InitFromPool();
return ret; return ret;
} }
@@ -285,7 +281,7 @@ namespace TEngine
} }
else else
{ {
_pendingLoad = new LoadRequest { Path = path, BAsync = bAsync, BInPool = bInPool}; _pendingLoad = new LoadRequest { Path = path, BAsync = bAsync, BInPool = bInPool };
if (_audioAgentRuntimeState == AudioAgentRuntimeState.Playing) if (_audioAgentRuntimeState == AudioAgentRuntimeState.Playing)
{ {
@@ -325,7 +321,7 @@ namespace TEngine
_source.Pause(); _source.Pause();
} }
} }
/// <summary> /// <summary>
/// 取消暂停音频代理辅助器。 /// 取消暂停音频代理辅助器。
/// </summary> /// </summary>