Exemple #1
0
    void Start()
    {
        // setup grid
        Grid.SetupGrid();

        // load start images in background
        imagesProvider = new ImagesProvider(Grid.Cells.Count);
        StartCoroutine(setupCells());

        // setup bg workers
        replaceRandomCellWorker = new ReplaceRandomCellWorker(this);
    }
Exemple #2
0
    void Start () {

        // setup grid
        Grid.SetupGrid();

        // load start images in background
        imagesProvider = new ImagesProvider(Grid.Cells.Count);
        StartCoroutine(setupCells());
        
        // setup bg workers
        replaceRandomCellWorker = new ReplaceRandomCellWorker(this);
    }