Esempio n. 1
0
    /// <summary>
    /// Turns the off histograms, cards, and world and unit buttons
    /// </summary>
    public void TurnOffHistosAndCards()
    {
        //turning off the button components so the user can't click them
        worldButton.enabled = false;
        unitButton.enabled  = false;

        //turns the histogram spots off to make them uninteractible
        currentSizeHistogram.TurnOffHistoSpots();
        pastSizeHistogram.TurnOffHistoSpots();
        playerInfoManager.TurnOffOnPlayerCards(false);
    }