You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2020. It is now read-only.
public bool TryDequeue(IList<T> outputItems)
{
var entity = m_Entity as Entity;
int count = entity.Count;
if (count <= 0)
return false;
....
}
修改为
public bool TryDequeue(IList<T> outputItems)
{
var entity = m_Entity as Entity;
if (entity == m_BackEntity)
return false;
int count = entity.Count;
if (count <= 0)
return false;
....
}