| | |
| | |
|
| | | int collectItem = 0;
|
| | |
|
| | | Tweener m_Tweener;
|
| | |
|
| | | int ruinsTranscriptMapId = 0;
|
| | | DungeonModel model { get { return ModelCenter.Instance.GetModel<DungeonModel>(); } }
|
| | | PlayerMainDate main { get { return ModelCenter.Instance.GetModel<PlayerMainDate>(); } }
|
| | |
| | |
|
| | | protected override void OnPreClose()
|
| | | {
|
| | | if (m_Tweener != null)
|
| | | {
|
| | | m_Tweener.Kill(false);
|
| | | m_Tweener = null;
|
| | | }
|
| | | m_BossInfosContainer.Dispose();
|
| | | DropItemManager.pickUpCallBack -= OnPickItem;
|
| | | MainInterfaceWin.Event_Duplicates -= OnChangeFuncBtnPosEvent;
|
| | |
| | |
|
| | | private void OnChangeFuncBtnPosEvent(bool open, float speed)
|
| | | {
|
| | | m_ContainerFuncBtn.DOLocalMoveY(open ? m_ContainerFuncUp.localPosition.y : m_ContainerFuncBottom.localPosition.y, speed);
|
| | | m_Tweener = m_ContainerFuncBtn.DOLocalMoveY(open ? m_ContainerFuncUp.localPosition.y : m_ContainerFuncBottom.localPosition.y, speed);
|
| | | }
|
| | |
|
| | | private void ProcessDungeonEndCoolDown()
|