예제 #1
0
 /// <summary>
 /// </summary>
 public MapLoadingScreen(List <Score> scores, Replay replay = null)
 {
     Scores = scores;
     Replay = replay;
     View   = new MapLoadingScreenView(this);
     AudioTrack.AllowPlayback = false;
 }
예제 #2
0
        /// <summary>
        /// </summary>
        public MapLoadingScreen(List <Score> scores, Replay replay = null)
        {
            Scores = scores;
            Replay = replay;

            var game   = GameBase.Game as QuaverGame;
            var cursor = game?.GlobalUserInterface.Cursor;

            cursor.Alpha = 0;

            View = new MapLoadingScreenView(this);
            AudioTrack.AllowPlayback = false;
        }
예제 #3
0
 /// <summary>
 /// </summary>
 public MapLoadingScreen(List <Score> scores)
 {
     Scores = scores;
     View   = new MapLoadingScreenView(this);
     AudioTrack.AllowPlayback = false;
 }