예제 #1
0
        public override void _Show(float duration = 0.25f)
        {
            cachedTimeScale = Time.timeScale;
            Time.timeScale  = 0;

            UIControl.BlurFadeIn();

            base._Show();
        }
예제 #2
0
        public void _Show(bool playerWon)
        {
            if (playerWon)
            {
                lbGameOverMsg.text = "Level Completed";
            }
            else
            {
                lbGameOverMsg.text = "Game Over";
            }

            UIControl.BlurFadeIn();

            base._Show();
        }