예제 #1
0
        public void Hide()
        {
            WindowViewHandler.Hide(_canvasGroup);

            //
            SetPauseOff();
        }
예제 #2
0
        public override void Hide()
        {
            WindowViewHandler.Hide(_canvasGroup);

            //
            WorkOnHide();
        }
예제 #3
0
        public void Show()
        {
            WindowViewHandler.Show(_canvasGroup);

            //
            CheckBarrelsCount();
            //_gameWindow.BlockPauseButton();
        }
예제 #4
0
        public void Show()
        {
            WindowViewHandler.Show(_canvasGroup);

            //

            SetPauseOn();
        }
예제 #5
0
 // used on button !
 public void OnClickButton_RecordYourTurn()
 {
     WindowViewHandler.Hide(_canvaseGroup);
     _uiManager.ShowWindow(UIWindowEnum.SPLASH, true);
     _mainScreenStateManager.SwitchState(MainScreenStatesEnum.CHOOSE_TRACK);
     _AccountGold.gameObject.SetActive(false);
     _bonusGold.gameObject.SetActive(false);
 }
예제 #6
0
        public void Show()
        {
            WindowViewHandler.Show(_canvasGroup);

            //

            //_gameWindow.BlockPauseButton();
        }
예제 #7
0
        public void Show()
        {
            WindowViewHandler.Show(_canvasGroup);

            //
            // HideGameWindowTimer(_gameWindow);
            SetPauseOn();
        }
예제 #8
0
        public override void Show()
        {
            WindowViewHandler.Show(_canvasGroup);


            //Debug.Log("SHOW");
            //
            WorkOnShow();
        }
예제 #9
0
        public void Show()
        {
            WindowViewHandler.Show(_canvasGroup);

            //
            ShowDefaultSmiles();
            ShowRaceTime(_gameWindow);
            //_gameWindow.BlockPauseButton();
        }
예제 #10
0
        public void Show()
        {
            if (_playerManager.GetTutorialStep() == 1)
            {
                WindowViewHandler.Show(_canvaseGroup);
            }
            else if (_playerManager.GetTutorialStep() == 2)
            {
                WindowViewHandler.Show(_canvaseGroupMenu);
            }


            //_gameWindowTutorial.BlockPauseButton();
        }
예제 #11
0
        public void Show()
        {
            WindowViewHandler.Show(_canvaseGroup);

            //


            CheckButtonsStampX();
            ShowPanelName();
            //ShowStars(_gameWindow);
            ShowWinAttemptsX(_gameWindow);
            ShowStamps();
            //ShowAllUIAnimations();

            //_gameWindow.BlockPauseButton();
        }
예제 #12
0
        public void Show()
        {
            WindowViewHandler.Show(_canvaseGroup);

            //
            CheckValue();

            InitExpBar();
            CheckButtonsStampX();
            ShowPanelName();
            //ShowStars(_gameWindow);
            ShowPlayerAndEnemyNamesScores();
            ShowWinAttemptsX(_gameWindow);
            ShowStamps();

            ShowAllUIAnimations(_gameWindow);

            //_gameWindow.BlockPauseButton();
        }
예제 #13
0
 public void Show()
 {
     WindowViewHandler.Show(_canvasGroup);
 }
예제 #14
0
 public void Hide()
 {
     WindowViewHandler.Hide(_canvasGroup);
 }
예제 #15
0
 public override void Show()
 {
     WindowViewHandler.Show(_canvasGroup);
     //
     WorkOnShow();
 }
예제 #16
0
 public void Hide()
 {
     WindowViewHandler.Hide(_canvaseGroup);
     _imageJewels.gameObject.SetActive(false);
 }
예제 #17
0
 public void ShowQuestion(Action OnComplete)
 {
     Debug.LogError("SHowQW");
     WindowViewHandler.Show(_canvaseGroupQuestion);
     timmerTween = TimeBuy.DOFillAmount(0, 5f).OnComplete(() => { HideQuestion(); OnComplete(); });
 }
예제 #18
0
 public void Show()
 {
     WindowViewHandler.Show(_canvasGroup);
     //
     CheckBarrelsCount();
 }
예제 #19
0
 public void HideQuestion()
 {
     WindowViewHandler.Hide(_canvaseGroupQuestion);
     TimeBuy.DOFillAmount(1, 0f);
 }