From 7ada45185bd57b70f086bc3c72a629c7b7c43231 Mon Sep 17 00:00:00 2001 From: Multfinite Date: Fri, 8 Sep 2023 20:05:50 +0300 Subject: [PATCH] Add DOCS.md Custom mixes --- DOCS.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 DOCS.md diff --git a/DOCS.md b/DOCS.md new file mode 100644 index 00000000..f2223849 --- /dev/null +++ b/DOCS.md @@ -0,0 +1,18 @@ +### Custom mixes + +Mixes can be preloaded and postloaded. Preload mixes will overwrite all content of original mix files and postloaded mix files. +Postloaded mixes will be overwritten by any other mix files content (include original files). + +> Overwite priority it's loading order:\ +Preload mixes -> Original mixes -> Postload mixes + +Configuration file (spawn.ini) allow to configure mix loading via two sections: *mixes_preload* for preloading, *mixes_postload* for postloading. +This section it is just a sorted list of filenames. + +Example: + +> [mixes_preload] \ +1=HTNK.mix \ +0=HTK.mix + +The first will be HTK.mix and then HTNK.mix - this list will sorted in ascending order. \ No newline at end of file