Basic mod loader for Marble It Up! Ultra
- C# 100%
| .editorconfig | ||
| .gitignore | ||
| Entrypoint.cs | ||
| LICENSE | ||
| ModLoader.csproj | ||
| ModLoader.sln | ||
| README.md | ||
| UserProperties.xml.template | ||
Marble It Up! Ultra Mod Loader
A very simple mod loader for Marble It Up! Ultra, utilizing Unity Doorstop. In theory, this will probably work with lots of other Unity games due to its simplicity.
Installation
To install the mod loader:
- Download the mod loader for your platform from the Releases page
- Navigate to your Marble It Up! Ultra installation directory
- In Steam, you can find this directory by right clicking on Marble It Up! Ultra in the library and navigating to "Manage" -> "Browse local files"
- On Windows, this will probably be something along the lines of
C:\Program Files (x86)\Steam\steamapps\common\Marble It Up!
- Extract the zip file into this directory
- Put any mods you want to use in your
Modsdirectory - Linux/MacOS only: In Steam, right click on Marble It Up! Ultra in the library, open
Properties..., and in the launch options text field, enter the following:./run.sh %command%
- Start the game and you should be good to go!
Build
If you just want to use the mod loader, refer to the Usage section above. These instructions are if you want to compile the mod loader itself.
- Clone the git repository
- Download Harmony (v2.4.2 as of writing) and extract
0Harmony.dllfor net48 into the directory<miuu install>/Mods/ModLoader. - Copy
UserProperties.xml.templateintoUserProperties.xmland edit it:- Edit
GameDirto point to the directory of your MIUU installation. - Linux only: Edit
GameDataDirto$(GameDir)/MarbleItUp_Data
- Edit
- Open the project, e.g. open
ModLoader.slnin Visual Studio or open the repository in vscode with the C# extension - Build the project, e.g. click Build -> Build Solution in Visual Studio, or run
dotnet build --configuration Release. It will build directly into theMods/ModLoaderdirectory. - Download Unity Doorstop (v4.5.0 as of writing) for your platform and extract the x64 version (universal for MacOS) into your MIUU install directory.
- Edit
doorstop_config.ini(Windows) orrun.sh(Linux/MacOS):- Change
target_assemblytoMods/ModLoader/ModLoader.dll - Change
dll_search_path_overridetoMods/ModLoader - Optional but recommended (Windows only): Change
redirect_outputtotrue
- Change
- Linux/MacOS only: In Steam, right click on Marble It Up! Ultra in the library, open
Properties..., and in the launch options text field, enter the following:./run.sh %command%
- You should now be able to launch Marble It Up! Ultra with the mod loader.