TinyLifeWeb/articles/mod_basics.md
2021-08-04 05:42:02 +02:00

3.2 KiB

Modding Basics

This page sums up a few of the basics that you'll need to know if you want to make a mod for Tiny Life.

Creating mods

To create a mod, all you have to do is create a repository from this template 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.

The template repository also contains a little Run script for windows and linux and mac that automatically builds your mod, copies it into the Mods directory of your Tiny Life instance and runs the game. Note that the script will only work correctly if you've previously launched Tiny Life manually.

The game's API is fully documented. The documentation is easily accessible by opening any of the API's files in your IDE. The most updated version can be found on the wiki as well.

If you have any questions, don't hesitate to ask on the Discord or start a discussion about it.

Distributing mods

To distribute your mod to other people, all you have to do is go into the bin/Debug/net5.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. If you want other players to try out your mod, you can also post it to the community.

Updating mods

To change the version of Tiny Life that your mod is compiled against, simply go into the project file and change the TinyLifeApi version. Note that some other dependencies might also have been updated, which needs to be taken into account.

Where's the source code?

The NuGet package for the Tiny Life API just contains a reference assembly 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 and then decompile it to see the implementation's code, but due to its license, copying it is not allowed.

Dependency version history

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 the template repository is tagged with the game's version number. If you want to develop for a certain version, just check that tag's project file to see the required dependency versions.