ScreenManagement.Screens.LoadingScreen.Load C# (CSharp) Method

Load() public static method

Activates the loading screen.
public static Load ( ScreenManager screenManager, bool loadingIsSlow, PlayerIndex controllingPlayer ) : void
screenManager ScreenManager
loadingIsSlow bool
controllingPlayer PlayerIndex
return void
        public static void Load(ScreenManager screenManager, bool loadingIsSlow,
                                PlayerIndex? controllingPlayer,
                                params GameScreen[] screensToLoad)
        {
            // Tell all the current screens to transition off.
            foreach (GameScreen screen in screenManager.GetScreens())
                screen.ExitScreen();

            // Create and activate the loading screen.
            LoadingScreen loadingScreen = new LoadingScreen(screenManager,
                                                            loadingIsSlow,
                                                            screensToLoad);

            screenManager.AddScreen(loadingScreen, controllingPlayer);
        }