public void GoToInvestigatorPanel()
 {
     IsInInvestigatorPanel = true;
     GetComponent <PanelTabManager>().PanelAnim(0);
     viewCardManager.ShowInvestigatorCards();
     SettingButtons(false);
 }
 public void ChooseInvestigatorCard(CardBaseComponent card)
 {
     if (investigatorSelector.InvestigatorQuantity >= GameData.MAX_INVESTIGATORS)
     {
         return;
     }
     previewComponent.ChooseInvestigator(card);
     audioComponent.PlayClick();
     investigatorSelector.AddInvestigator(card.ID);
     viewCardManager.ShowInvestigatorCards();
     viewCardManager.ShowListSelectedCards(investigatorSelector.CurrentInvestigator);
     check.CheckingAllReady();
 }