Beispiel #1
0
        void ShowMoveRange()
        {
            int cellIndex = map.GetCellIndex(tank.currentMap2DLocation);

            if (cellIndex < 0)
            {
                return;
            }
            List <int> cells = tank.GetCellNeighbours();

            map.CellBlink(cells, Color.blue, 1f);
        }