| | |
| | | { |
| | | |
| | | [SerializeField] FunctionButtonGroup m_FunctionGroup; |
| | | [SerializeField] FunctionButton m_DemonJar; |
| | | [SerializeField] FunctionButton m_FairyGrabBoss; |
| | | [SerializeField] FunctionButton m_DogzDungeon; |
| | | [SerializeField] FunctionButton m_JadeDynastyBoss; |
| | |
| | | |
| | | protected override void AddListeners() |
| | | { |
| | | m_DemonJar.AddListener(ShowDemonJar); |
| | | m_DogzDungeon.AddListener(ShowDogzDungeon); |
| | | m_RidingPetContention.AddListener(ShowRidingPetContention); |
| | | m_FairyGrabBoss.AddListener(FairyGrabBoss); |
| | |
| | | m_FunctionGroup.TriggerByOrder(functionOrder); |
| | | } |
| | | #endregion |
| | | |
| | | private void ShowDemonJar() |
| | | { |
| | | CloseSubWindows();
|
| | |
|
| | | m_NormalBottom.gameObject.SetActive(true); |
| | | |
| | | WindowCenter.Instance.Open<DemonJarWin>(); |
| | | functionOrder = m_DemonJar.order; |
| | | } |
| | | |
| | | private void FairyGrabBoss() |
| | | { |