Beispiel #1
0
 public void PageDown2()
 {
     myStage = 3;
     CG_MyPage1.DOFade(0f, 0);
     CG_MyPage2.DOFade(0f, 0).OnComplete(() => {
         GO_MyPage1.SetActive(false);
         GO_MyPage2.SetActive(false);
     });
     GO_MyPage3.SetActive(true);
     CG_MyPage3.DOFade(1f, 0);
     ServiceSVHandler.isBarFixed = false;
     // ServiceSVHandler.isBarFixed = false;
 }
Beispiel #2
0
 void PageDown1()
 {
     myStage = 2;
     CG_LoadingPage.DOFade(0f, 0.3f);
     CG_MyPage1.DOFade(0f, pagingDura).SetEase(pagingEase).OnComplete(() => {
         GO_LoadingPage.SetActive(false);
         GO_MyPage1.SetActive(false);
     });
     GO_MyPage2.SetActive(true);
     CG_MyPage2.DOFade(1f, pagingDura).SetEase(pagingEase);
     // ServiceSVHandler.isBarFixed = false;
     ShowMessage();
 }