public void ShowStringPanel(string key) { selectedPanel = Panel.StringPanel; selectedData = key; StringPanel.SetActive(true); NumberPanel.SetActive(false); TitlePanel.SetActive(false); AskButton.SetActive(true); InstructionText.SetActive(false); }
public void OpenPanel() { //If the only child is "Title", make sure to instantiate the data fields if (DecisionCard.transform.childCount <= 1) { InitDecisionPanel(FindObjectOfType <GameManager>().ChosenCards[0]); } StringPanel.SetActive(false); NumberPanel.SetActive(false); TitlePanel.SetActive(false); AskButton.SetActive(false); InstructionText.SetActive(true); DecisionPanel.SetActive(true); DecisionResponse.SetActive(false); }