예제 #1
0
 public void OnUpdate()
 {
     if (Input.GetKeyDown(KeyCode.P))
     {
         PlaylistsCollection.ReloadPlaylists();
         PlaylistsCollection.MatchSongsForAllPlaylists(true);
     }
 }
예제 #2
0
 public void SongCore_SongsLoadedEvent(SongCore.Loader sender, Dictionary <string, CustomPreviewBeatmapLevel> levels)
 {
     try
     {
         PlaylistsCollection.MatchSongsForAllPlaylists(true);
     }
     catch (Exception e)
     {
         Logger.Exception("Unable to match songs for all playlists! Exception: " + e);
     }
 }
예제 #3
0
 private void SongLoader_SongsLoadedEvent(SongLoader sender, List <CustomLevel> levels)
 {
     try
     {
         PlaylistsCollection.MatchSongsForAllPlaylists(true);
     }
     catch (Exception e)
     {
         Misc.Logger.Exception("Unable to match songs for all playlists! Exception: " + e);
     }
 }
예제 #4
0
 public void SongLoader_SongsLoadedEvent(SongLoader sender, List <CustomLevel> levels)
 {
     try
     {
         PlaylistsCollection.MatchSongsForAllPlaylists(true);
     }
     catch (Exception e)
     {
         Plugin.log.Critical("Unable to match songs for all playlists! Exception: " + e);
     }
 }
예제 #5
0
 private void SongLoader_SongsLoadedEvent(SongLoader sender, List <CustomLevel> levels)
 {
     PlaylistsCollection.MatchSongsForAllPlaylists(true);
 }
예제 #6
0
 private void Loader_SongsLoadedEvent(SongCore.Loader arg1, Dictionary <string, CustomPreviewBeatmapLevel> arg2)
 {
     PlaylistsCollection.MatchSongsForAllPlaylists();
     //   DebugLogPlaylists();
 }