-
Notifications
You must be signed in to change notification settings - Fork 4
For Developers
ModComponent is intended to be used for creating mods that introduce new items.
This page is supposed to contain information about how the get started, answer development related questions and show examples.
AssetBundles can be created with Unity 2017.2.1 (free).
The Long Dark currently (v1.27) uses Unity 2017.2.1 (professional).
Since version V1.41 The Long Dark uses Unity 2018.2.14.
The template project from ModComponent can be a good start for a new unity project.
The sample project from ModComponent shows how a simple item mod can look like.
SoundBanks can be created with WWise 2017.2.1.6524.
Earlier version seem to produce SoundBanks that cannot be imported.
Later versions may be possible, but I haven't tested this.
Registration is required and the non-commercial version is limited to 200 audio files per SoundBank, but using multiple SoundBanks should be possible.
Audiokinetic provide some great (although lengthy) tutorials on youtube, e.g. https://www.youtube.com/watch?v=JEp7Un7Vj44
SoundBanks are registered using the AssetLoader
A rough description of the architecture and the motivation / reasoning behind it.
It isn't necessary to understand it, but it might help to get the big picture.
Eliminates the need to write glue code for mapping items.
A tutorial for creating your own item mod with ModComponent