Exemplo n.º 1
0
    public void Save()
    {
        if (!string.IsNullOrEmpty(inputF.text))
        {
            List <MapTileSave> saveList = new List <MapTileSave>();

            for (int x = 0; x < map.mapSize.x; x++)
            {
                for (int y = 0; y < map.mapSize.y; y++)
                {
                    saveList.Add(map.GetTileController(new Coord(x, y)));
                }
            }

            saveManager.SaveList(saveList, inputF.text);
            saveManager.Save(map.mapSize, inputF.text);
            mainMenu.RemoveSaveUI();
        }
        else
        {
            foreach (Text t in GetComponentsInChildren <Text>())
            {
                t.enabled = true;
            }
        }
    }