コード例 #1
0
        }   // end of TitleScreenMode Init()

        public void DoneLoadingContent()
        {
            if (progress != null)
            {
                progress.Complete();
                progress = null;
            }

            updateObj.done = true;

            if (Program2.bShowVersionWarning)
            {
                Program2.bShowVersionWarning = false;
                GamePadInput.CreateNewerVersionDialog();
            }

            if (BokuGame.Logon)
            {
                logonDialog.Activate();
            }

            // Did we save the previous user?  If so, restore.
            if (XmlOptionsData.KeepSignedInOnExit)
            {
                Auth.SetCreator(XmlOptionsData.CreatorName, XmlOptionsData.CreatorIdHash);
            }
            else
            {
                // Else, show the SignIn dialog.
                AuthUI.ShowSignInDialog();
            }
        }   // end of DoneLoadingContent()