Chinese Railways-style smoke deflectors for Derail Valley
 
 
Go to file
EvilPunkin 8b0833ad24 i forgor what i added :( but i think things work now 2023-08-31 17:24:32 -07:00
(unusedfolder) assets added streamlining and settings and a bit more probably 2023-08-21 17:03:27 -07:00
dumb282tweaks i forgor what i added :( but i think things work now 2023-08-31 17:24:32 -07:00
.editorconfig Initial commit 2023-08-12 10:24:23 -07:00
.gitignore Initial commit 2023-08-12 10:24:23 -07:00
Director.Build.targets ui has been added 2023-08-13 14:03:01 -07:00
LICENSE Initial commit 2023-08-12 10:24:23 -07:00
README.md Initial commit 2023-08-12 10:24:23 -07:00
dumb282tweaks.sln ui has been added 2023-08-13 14:03:01 -07:00
info.json ui has been added 2023-08-13 14:03:01 -07:00
package.ps1 FullCab will show up above steelmill 2023-08-14 17:42:40 -07:00
repository.json ui has been added 2023-08-13 14:03:01 -07:00
sendtomods.ps1 ui has been added 2023-08-13 14:03:01 -07:00
zDerailValley.url ui has been added 2023-08-13 14:03:01 -07:00

README.md

Contributors Forks Stargazers Issues MIT License

Unity Mod Manager Mod Template

A template for creating Derail Valley mods that load via Unity Mod Manager.

Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Building
  3. Packaging
  4. License

About The Project

This is a template for Derail Valley mods that load via the Unity Mod Manager mod loader.
TODO: Instructions for how mod creators use this template.

Building

Building the project requires some initial setup, after which running dotnet build will do a Debug build or running dotnet build -c Release will do a Release build.

References Setup

After cloning the repository, some setup is required in order to successfully build the mod DLLs. You will need to create a new Directory.Build.targets file to specify your local reference paths. This file will be located in the main directory, next to MOD_NAME.sln.

Below is an example of the necessary structure. When creating your targets file, you will need to replace the reference paths with the corresponding folders on your system. Make sure to include semicolons between each of the paths and no semicolon after the last path. Also note that any shortcuts you might use in file explorer—such as %ProgramFiles%—won't be expanded in these paths. You have to use full, absolute paths.

<Project>
	<PropertyGroup>
		<ReferencePath>
			C:\Program Files (x86)\Steam\steamapps\common\Derail Valley\DerailValley_Data\Managed\
		</ReferencePath>
		<AssemblySearchPaths>$(AssemblySearchPaths);$(ReferencePath);</AssemblySearchPaths>
	</PropertyGroup>
</Project>

Line Endings Setup

It's recommended to use Git's autocrlf mode on Windows. Activate this by running git config --global core.autocrlf true.

Packaging

To package a build for distribution, you can run the package.ps1 PowerShell script in the root of the project. If no parameters are supplied, it will create a .zip file ready for distribution in the dist directory. A post build event is configured to run this automatically after each successful Release build.

Linux: pwsh ./package.ps1 Windows: powershell -executionpolicy bypass .\package.ps1

Parameters

Some parameters are available for the packaging script.

-NoArchive

Leave the package contents uncompressed in the output directory.

-OutputDirectory

Specify a different output directory. For instance, this can be used in conjunction with -NoArchive to copy the mod files into your Derail Valley installation directory.

License

Source code is distributed under the MIT license. See LICENSE for more information.