| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A Mod Loader built for Muse Dash
You can find other non-development mods, including Custom Songs, in our Discord community.
To install MuseDashModLoader, you only need to copy a few files to the game root directory.
No files are overwritten.
No need to re-install after game update.
No third-party launcher required.
You can download the latest stable version in Github releases
Dist Release: For users, does not contain program symbols.
Debug Release: For developers, contains program symbols.
Or download the latest development version in Appveyor artifacts
Extract files into the root directory of Muse Dash.
Congratulations, MuseDashModLoader has been installed!
MuseDashModLoader will launch automatically when you start the game.
Put the mod file (.dll extension) into the Mods folder.
Mods folder will be created automatically after you run the game once.
Delete the mod from the Mods folder.
Some initial behavior of MuseDashModLoader can be set in ModConfig.ini
[UnityDoorstop]
# Specify whether to enable Modloader
enabled=true
# Specify the dll to be injected
targetAssembly=ModLoader.dll
# Specifies whether Unity's output log should be redirected to <current folder>\output_log.txt
redirectOutputLog=true
# Specifies whether to display the debug window. Using ModLogger.Debug() method
showConsoleWindow=trueDevelopment tools: Visual Studio 2019
using HarmonyLib;
using ModHelper;
namespace MyAwesomeProject
{
class MyAwesomeMod : IMod
{
public string Name => "A awesome mod";
public string Description => "An example of mod";
public string Author => "Mo10";
public string HomePage => "https://github.com/mo10/MuseDashModLoader";
public void DoPatching()
{
var harmony = new Harmony("com.github.mo10.myawesomemod");
// Do somthing...
// When you want to print to the log:
// ModHelper.ModLogger.Debug("My log output");
}
}
}If your mod throws an exception in DoPatching(), you can find the exception message in Modlogger.log.
MuseDashModLoader uses the following projects:
Proxy: https://github.com/NeighTools/UnityDoorstop
Harmony: https://github.com/pardeike/Harmony
| Back | FazBrowse Home | New Git URL |