├── .gitattributes ├── .gitignore ├── Beat Saber Utils.sln ├── Beat Saber Utils ├── Beat Saber Utils.csproj ├── Directory.Build.props ├── Gameplay │ ├── Gamemode.cs │ ├── HarmonyPatches │ │ ├── BlahBlahGrabTheLevelData.cs │ │ ├── LevelRestartControllerRestartLevelPatch.cs │ │ ├── ResultsViewControllerSetDataToUI.cs │ │ ├── ScenesTransitionSetupDataSoFinishPatch.cs │ │ └── SoloFreePlayFlowCoordinatorProcessScore.cs │ ├── LevelData.cs │ ├── ScoreSubmission.cs │ └── UserInfo.cs ├── Plugin.cs ├── Resources │ └── oculus.png ├── SceneNames.cs ├── Utilities │ ├── BSEvents.cs │ ├── Config.cs │ ├── Events │ │ └── EventExtensions.cs │ ├── IniFile.cs │ ├── LevelFinishedEventArgs.cs │ ├── Logger.cs │ └── UIUtilities.cs └── manifest.json ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/.gitignore -------------------------------------------------------------------------------- /Beat Saber Utils.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils.sln -------------------------------------------------------------------------------- /Beat Saber Utils/Beat Saber Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Beat Saber Utils.csproj -------------------------------------------------------------------------------- /Beat Saber Utils/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Directory.Build.props -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/Gamemode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/Gamemode.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/HarmonyPatches/BlahBlahGrabTheLevelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/HarmonyPatches/BlahBlahGrabTheLevelData.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/HarmonyPatches/LevelRestartControllerRestartLevelPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/HarmonyPatches/LevelRestartControllerRestartLevelPatch.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/HarmonyPatches/ResultsViewControllerSetDataToUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/HarmonyPatches/ResultsViewControllerSetDataToUI.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/HarmonyPatches/ScenesTransitionSetupDataSoFinishPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/HarmonyPatches/ScenesTransitionSetupDataSoFinishPatch.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/HarmonyPatches/SoloFreePlayFlowCoordinatorProcessScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/HarmonyPatches/SoloFreePlayFlowCoordinatorProcessScore.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/LevelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/LevelData.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/ScoreSubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/ScoreSubmission.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Gameplay/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Gameplay/UserInfo.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Plugin.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Resources/oculus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Resources/oculus.png -------------------------------------------------------------------------------- /Beat Saber Utils/SceneNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/SceneNames.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Utilities/BSEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Utilities/BSEvents.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Utilities/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Utilities/Config.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Utilities/Events/EventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Utilities/Events/EventExtensions.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Utilities/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Utilities/IniFile.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Utilities/LevelFinishedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Utilities/LevelFinishedEventArgs.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Utilities/Logger.cs -------------------------------------------------------------------------------- /Beat Saber Utils/Utilities/UIUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/Utilities/UIUtilities.cs -------------------------------------------------------------------------------- /Beat Saber Utils/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/Beat Saber Utils/manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kylemc1413/Beat-Saber-Utils/HEAD/README.md --------------------------------------------------------------------------------