浏览代码

Fix possible null

/main
Thomas ICHÉ 5 年前
当前提交
ae682265
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 3
      Runtime/Ingredients/Factory/Factory.cs

3
Runtime/Ingredients/Factory/Factory.cs


private void OnEnable()
{
m_Instances.RemoveAll(item => item == null);
if(m_Instances != null)
m_Instances.RemoveAll(item => item == null);
}
private void OnDestroy()

正在加载...
取消
保存