| | |
| | | { |
| | | [SerializeField] Button m_Close; |
| | | [SerializeField] Toggle m_Issues; |
| | | [SerializeField] Text m_IssueTitle; |
| | | [SerializeField] Toggle m_Contact; |
| | | [SerializeField] Text m_ContactTitle; |
| | | |
| | | [SerializeField] RectTransform m_IssueContainer; |
| | | [SerializeField] ScrollRect m_IssueScrollRect; |
| | |
| | | private void DisplayIssues(bool display) |
| | | { |
| | | m_IssueContainer.gameObject.SetActive(display); |
| | | m_IssueTitle.color = UIHelper.GetUIColor(display ? TextColType.LightYellow : TextColType.NavyBrown); |
| | | } |
| | | |
| | | private void DisplayContact(bool display) |
| | | { |
| | | m_ContactContainer.gameObject.SetActive(display); |
| | | m_ContactTitle.color = UIHelper.GetUIColor(display ? TextColType.LightYellow : TextColType.NavyBrown); |
| | | } |
| | | |
| | | private void CopyQQ() |