A Quick Modding Setup Guide:
- Download the MelonLoader.Installer.exe installer from https://github.com/HerpDerpinstine/MelonLoader/releases
- Run it, and select Spin Rhythm in it's steam directory (the default is C:\Program Files (x86)\Steam\steamapps\common\Spin Rhythm\SpinRhythm.exe)
- Drag the .dll file above into the Mods folder in the game's directory. (for example: C:\Program Files (x86)\Steam\steamapps\common\Spin Rhythm\Mods
- Run the game as you would normally and the modloader will do its thing.
- Make sure you have .NET Framework 4.7.2 and Visual C++ 2015-2019 installed. (It might already be if you've got games installed that require it.)
- Download the latest .zip release of MelonLoader
- Extract the zip to your Steam game directory.
- Run the game as you would normally and the modloader will do its thing.
- Learn C#.
- Have Visual Studio with the .NET pack installed.
- Create a new .NET framework solution.
- Follow the quick start guide.
- Have fun!
- Learn how to use Harmony and Reflection for method patching.
- Have a .NET decompiler handy! (I personally use dnSpy)
- Ask the MelonLoader Discord Server if you have any questions, they're all pretty cool people.
The .NET wrapper .dll for Steamworks is nowhere to be found in the game's directory or decompiled code, with the only thing that references it being a license for Steamworks.NET in a .txt file. It's incredibly strange I swear.Steamworks .NET wrapper is in the inthe firstpass namespace- Calling setCurrentTrackTime() will set the track time every frame (on Update()), I don't know why.
- The field "Name" in the TrackData of a custom song contains only the difficulty name for whatever reason.
- Patching methods after CalculateAccuracy() seems to be more stable than patching after ProcessSongComplete() for patching stuff at the song complete screen.
Sorry if this is a little vague at the moment, I'll add documentation on navigating the decompiled code and random notes in a bit.