TinyLifeExampleMod/README.md

37 lines
3.5 KiB
Markdown
Raw Normal View History

# Tiny Life Example Mod
An example mod for my game Tiny Life. Use this template repository to create your own mod!
2020-11-25 00:57:25 +01:00
# Installing mods
2020-11-25 00:57:25 +01:00
Installing a mod is pretty simple:
2020-12-12 15:31:52 +01:00
- Find the `Tiny Life` folder (you can open it from the game's options menu)
2020-11-25 00:57:25 +01:00
- Find the `Mods` folder in there
- If you received the mod you want to install as a `zip` (or any other kind of) archive, extract it first
- Put the mod's `dll` as well as its `Content` folder into the `Mods` folder.
Done! Now just start the game and the mod should automatically load. If there are any errors, they'll be logged in the `Log.txt` file in the `Tiny Life` folder.
# Creating mods
To create a mod, all you have to do is create a repository [from this template](https://github.com/Ellpeck/TinyLifeExampleMod/generate) and open the project contained in it using Visual Studio, Rider or any other kind of C# IDE. The code that is already there contains some examples. Once you're done checking them out, you can just delete them and start fresh.
2020-11-25 00:57:25 +01:00
2020-11-25 02:00:47 +01:00
Since Tiny Life uses early versions of some of my libraries, you will also have to add [my server](https://nuget.ellpeck.de/) to your NuGet config. You can do so using the following command:
```
dotnet nuget add source https://nuget.ellpeck.de/v3/index.json --name "Ellpeck"
2020-11-25 02:00:47 +01:00
```
2020-11-25 00:57:25 +01:00
This repository also contains a little script called `Run.sh` that you can use to automatically build your mod, copy it into the `Mods` directory of your Tiny Life instance and run the game. Just be sure to modify all of the paths first.
2021-02-02 09:00:50 +01:00
The game's API is **fully documented**. The documentation is easily accessible by opening any of the API's files in your IDE. There's also a CTRL-F-able version available [on the wiki](https://github.com/Ellpeck/TinyLifeExampleMod/wiki/API-Documentation).
2020-11-25 00:57:25 +01:00
## Distributing mods
To distribute your mod to other people, all you have to do is go into the `bin/Debug/netcoreapp3.0` folder after building and copy your mod's `dll` and the `Content` directory. You can either send them to your friends directly or pack them into an archive first.
2020-11-25 01:23:12 +01:00
## Updating mods
2020-11-28 04:14:52 +01:00
To change the version of Tiny Life that your mod is compiled against, simply go into [the project file](https://github.com/Ellpeck/TinyLifeExampleMod/blob/main/ExampleMod.csproj) and change the `TinyLifeApi` version. Note that some other dependencies might also have been updated, which needs to be [taken into account](https://github.com/Ellpeck/TinyLifeExampleMod#dependency-version-history).
2020-11-25 01:23:12 +01:00
2020-11-25 00:57:25 +01:00
## Where's the source code?
2020-12-04 22:34:18 +01:00
The NuGet package for the Tiny Life API just contains a [reference assembly](https://docs.microsoft.com/en-us/dotnet/standard/assembly/reference-assemblies) so that people can't just download the game from NuGet and play it. Since most of the public API is documented, you won't have to look at the source code in most cases, anyway.
Technically, you can download the game [from itch](https://ellpeck.itch.io/tiny-life) and then decompile it to see the implementation's code, but due to its license, copying it is not allowed.
## Dependency version history
2021-01-11 22:28:56 +01:00
Since the mod is compiled against the same dependencies as Tiny Life, it also needs to have the same versions of those dependencies for mods to work correctly with the game. Each update to this repository is [tagged](https://github.com/Ellpeck/TinyLifeExampleMod/tags) with the game's version number. If you want to develop for a certain version, just check that tag's [project file](https://github.com/Ellpeck/TinyLifeExampleMod/blob/main/ExampleMod.csproj) to see the required dependency versions.