You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.6 KiB

5 years ago
5 years ago
  1. using UnityEngine.SceneManagement;
  2. // ReSharper disable CheckNamespace
  3. namespace IPA
  4. {
  5. /// <summary>
  6. /// Interface for Beat Saber plugins. Every class that implements this will be loaded if the DLL is placed at
  7. /// data/Managed/Plugins.
  8. /// </summary>
  9. public interface IBeatSaberPlugin
  10. {
  11. /// <summary>
  12. /// Gets invoked when the application is started.
  13. /// </summary>
  14. void OnApplicationStart();
  15. /// <summary>
  16. /// Gets invoked when the application is closed.
  17. /// </summary>
  18. void OnApplicationQuit();
  19. /// <summary>
  20. /// Gets invoked on every graphic update.
  21. /// </summary>
  22. void OnUpdate();
  23. /// <summary>
  24. /// Gets invoked on ever physics update.
  25. /// </summary>
  26. void OnFixedUpdate();
  27. /// <summary>
  28. /// Gets invoked whenever a scene is loaded.
  29. /// </summary>
  30. /// <param name="scene">The scene currently loaded</param>
  31. /// <param name="sceneMode">The type of loading</param>
  32. void OnSceneLoaded(Scene scene, LoadSceneMode sceneMode);
  33. /// <summary>
  34. /// Gets invoked whenever a scene is unloaded
  35. /// </summary>
  36. /// <param name="scene">The unloaded scene</param>
  37. void OnSceneUnloaded(Scene scene);
  38. /// <summary>
  39. /// Gets invoked whenever a scene is changed
  40. /// </summary>
  41. /// <param name="prevScene">The Scene that was previously loaded</param>
  42. /// <param name="nextScene">The Scene being loaded</param>
  43. void OnActiveSceneChanged(Scene prevScene, Scene nextScene);
  44. }
  45. }