A Muse Dash Mod which contains many features.
-
Realtime accuracy calculator (a little buggy but I can't fix it now, maybe you can help me.)
-
Key indicator (which key do you press and how many times do you press that key)
-
Realtime lyric display (under developing)
Install mod loader from here, install binary file as a mod, start game and you can see changes.
You can clone this repo, copy Directory.Build.props.example
to Directory.Build.props
and edit it, set game folder(for example, C:\Program Files\Steam\steamapps\common\Muse Dash
), open in Visual Studio and recover the project. All libraries are in %Game Folder%\MelonLoader\Managed
after you started game with MelonLoader at least once but it should be detected automatically if you edit Directory.Build.props
correctly.
After recovering project successfully, you can build it and get MiscToolsForMD.dll
and MiscToolsForMD.SDK.dll
at %Repo Folder%\bin\%Build Type%\
. Both files are needed, put MiscToolsForMD.dll
at Mods
folder and put MiscToolsForMD.SDK.dll
at UserLibs
folder.
Code inside it contains a data provider which allows you get realtime play info. I think this may be useful for someone. MiscToolsForMD
mod now also depends on this.
Just add it to your project as a reference, all APIs are under namespace MiscToolsForMD.SDK
.
[WARN] The SDK is under heavy development and may not work as expected. Also it needs a qualified document, but I am working on fixing accuracy calculating now so you may have to explore it yourself.
- Accuracy calculation in some cases is not same with game's result, we are working on it now.
- Please creating feature at branch
dev
, we use branchmain
as stable version. - Please use Visual Studio or other IDE supports Visual Studio's
.editorconfig
. Because we defined our code style in.editorconfig
file, using Visual Studio can make your code like us. You can use Visual Studio Community for free. If you still want to choose other IDE which does not support the.editorconfig
file, please keep our code style yourself:- Most of the names are using Pascal Style, interface must starts with letter
I
likeIMyInterface
,MyAwesomeClass
andMyFunction
. - Property's name should use Camel Style like
propertyAlpha
andbetaProperty
.
- Most of the names are using Pascal Style, interface must starts with letter
- Please make sure most warnings in Visual Studio are solved. Solving warnings may help reducing hidden bugs.