1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using BS_Utils.Utilities;
- using IPA;
- using SongBrowser.UI;
- using System;
- using Logger = SongBrowser.Logging.Logger;
- namespace SongBrowser
- {
- [Plugin(RuntimeOptions.SingleStartInit)]
- public class Plugin
- {
- public const string VERSION_NUMBER = "6.1.0";
- public static Plugin Instance;
- public static IPA.Logging.Logger Log;
- [Init]
- public void Init(IPA.Logging.Logger logger)
- {
- Log = logger;
- }
- [OnStart]
- public void OnApplicationStart()
- {
- Instance = this;
- Base64Sprites.Init();
- BSEvents.OnLoad();
- BSEvents.lateMenuSceneLoadedFresh += OnMenuSceneLoadedFresh;
- }
- [OnExit]
- public void OnApplicationQuit()
- {
- }
- private void OnMenuSceneLoadedFresh(ScenesTransitionSetupDataSO data)
- {
- try
- {
- SongBrowserApplication.OnLoad();
- }
- catch (Exception e)
- {
- Logger.Exception("Exception on fresh menu scene change: " + e);
- }
- }
- }
- }
|