コード例 #1
0
        private static Cell GetCell(this AOIManagerComponent self, long cellId)
        {
            Cell cell = self.GetChild <Cell>(cellId);

            if (cell == null)
            {
                cell = self.AddChildWithId <Cell>(cellId);
            }

            return(cell);
        }