Exemplo n.º 1
0
    public void CreateGridFunction()
    {
        GameObject referenceTile = GameObject.Instantiate(Resources.Load <GameObject>("Grid"));
        GameObject referenceCell = GameObject.Instantiate(Resources.Load <GameObject>("Cell"));

        for (int r = 0; r < row; r++)
        {
            for (int c = 0; c < col; c++)
            {
                int        rand      = Random.Range(0, 2);
                GameObject tile      = GameObject.Instantiate(referenceTile, transform);
                GameObject cell      = GameObject.Instantiate(referenceCell, transform);
                CellClass  cellClass = cell.GetComponent <CellClass>();
                GameManager.Instance.cellGrid.Add(cellClass);
                GameManager.Instance.tileGrid.Add(tile);
                cellClass.InitializeCell(r, c, row, col);

                float posX = r * tileSize;
                float posY = c * -tileSize;

                tile.transform.position = new Vector3(posX, posY, 0);
                cell.transform.position = new Vector3(posX, posY, -1);
            }
        }

        float gridW = col * tileSize;
        float gridH = row * tileSize;

        transform.position = -new Vector2(gridW / 2 + tileSize / 2, -gridH / 2 - tileSize / 2);

        SetCellNeighbours();

        Destroy(referenceCell);
        Destroy(referenceTile);
    }