| | |
| | | [SerializeField] Button m_QuestionRank;
|
| | | [SerializeField] Text m_QuestionRankBtnTxt;
|
| | | [SerializeField] DungeonTargetBehaviour m_TargetBehaviour;
|
| | | [SerializeField] RectTransform m_ContainerHint;
|
| | | [SerializeField] RectTransform m_ContainerRank;
|
| | | [SerializeField] FairyFeastRankBehaviour[] m_RankBehaviours;
|
| | | [SerializeField] FairyFeastRankBehaviour m_TopRank;
|
| | |
| | | m_QuestionRankBtnTxt.color = _index == 0 ? m_SelectEffect.unSelectTextColor : m_SelectEffect.selectTextColor;
|
| | |
|
| | | m_TargetBehaviour.gameObject.SetActive(_index == 0);
|
| | | m_ContainerHint.gameObject.SetActive(_index == 0);
|
| | | m_ContainerRank.gameObject.SetActive(_index == 1);
|
| | | currentSelect = _index;
|
| | | if (_index == 0)
|