Exemplo n.º 1
0
        private void ShowNextLoadingTip()
        {
            if (!PartyParrotManager.HasInstance || null == _loadingTips)
            {
                return;
            }

            _loadingScreen.ShowLoadingTip(_loadingTips.GetRandomLoadingTip());

            _loadingTipTimer.Start(_loadingTips.LoadingTipRotateSeconds);
        }
Exemplo n.º 2
0
        private void ShowNextLoadingTip()
        {
            if (null == _loadingTips)
            {
                return;
            }

            _loadingScreen.ShowLoadingTip(_loadingTips.GetRandomLoadingTip());

            _loadingTipTimer.Start(_loadingTips.LoadingTipRotateSeconds);
        }