A Peaks of Yore mod menu (made with UILib).
If you haven't installed BepInEx yet, follow the install instructions here:
If you haven't installed UILib yet, follow the install instructions here:
- Download the latest release here.
- The compressed zip will contain a
pluginsdirectory. - Copy the files in
pluginstoBepInEx/pluginsin your game directory.
Whichever approach you use for building from source, the resulting
plugin/mod can be found in bin/.
The following configurations are supported:
- Debug
- Release
To build with dotnet, run the following command, replacing with the desired value:
dotnet build -c <configuration>To build with Visual Studio, open ModMenu.sln and build by pressing ctrl + shift + b,
or by selecting Build -> Build Solution.
The following can be configured:
- The path Peaks of Yore is installed at.
- Whether the mod should automatically install on build.
Note that both of these properties are optional.
The configuration file must be in the root of this repository and must be called Config.props.
<Project>
<PropertyGroup>
<!-- For example, if peaks is installed under F: -->
<GamePath>F:\Games\Peaks of Yore</GamePath>
<!-- Add this option if you want to install after building -->
<InstallAfterBuild>true</InstallAfterBuild>
</PropertyGroup>
</Project>