/// <summary> /// 添加FixedUpdate /// </summary> /// <param name="handle"></param> private int AddFixedUpdate(UpdateHandle handle) { int id = GetHandleId(); FixedUpdateHandle.Add(handle); IndexDict.Add(id, handle); return(id); }
private int AddHandle2ForceList(UpdateHandle handle) { int id = GetHandleId(); ForceHandleList.Add(handle); IndexDict.Add(id, handle); return(id); }