Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.87 KB

README.md

File metadata and controls

42 lines (25 loc) · 1.87 KB

Against The Storm API

This repository contains all the content used to easily mod Against The Storm.

Download API and ExampleMod packages from ThunderStore for free under Manual Download

https://thunderstore.io/c/against-the-storm/p/ATS_API_Devs/

This mod is designed to be used in conjunction with other mods that wish to add new content to the game.

It provides a number of useful functions for adding new things to the game in a way that takes removes the struggles of understanding the Against the Storm code base and more.

Use this to save yourself HEAPS the pain of understanding the ATS codebase and why adding stuff doesn't work and giving up in the end.

See the wiki for code examples on how to use the API.

Contains an example mod that uses the API to add new content to the game.

If you are wanting to get started with modding the game then this mod can be copy+pasted then edit to include all the content you need.

Discord

If you require help with a mod, have ideas you want to share, want to report a problem or want to contribute to the modding scene you can join our discord.

https://discord.com/invite/ZfVWG86gsJ

Build

Before opening the solution, you need to create a file named Directory.Path.props in the root of the repository. This file should specify the path to your ATS game executable. Below is an example of how to set it up (the content of this file):

<Project>
  <PropertyGroup>
    <StormPath>C:\Program Files (x86)\Steam\steamapps\common\Against the Storm</StormPath>
  </PropertyGroup>
</Project>

Make sure to replace the StormPath value with the actual installation path of your game.