MOD FOLDER STRUCTURES

For Mods With Variants:

mods/ # Your mod repository root

├── ModA/ # Each mod in its own folder

│ ├── variant1/ # Contains variation.png

│ │ ├── .stream/.core files

│ │ └── variation.png

│ └── variant2/

│ │ ├── .stream/.core files

│ │ └── variation.png

└── ModB.zip # ZIP archive (extracted on drop)

│ ├── variant1/ # Contains variation.png

│ │ ├── .stream/.core files

│ │ └── variation.png

│ └── variant2/

│ │ ├── .stream/.core files

│ │ └── variation.png

├── preview.png # mod preview image (any name will do), in root folder

└── modinfo.json # used to store your mods meta data.

For Mods With Non-Variants

mods/ # Your mod repository root

├── ModA/ # Each mod in its own folder

│ ├── .stream/.core files

└── preview.png # mod preview image (any name will do)

├── ModB.zip/ # ZIP archive (extracted on drop)

│ ├── .stream/.core files

├── preview.png # mod preview image (any name will do), in root folder.

└── modinfo.json # used to store your mods meta data.

For ZIP archives, the tool extracts them temporarily on drop and applies the same structure and logic as uncompressed folders.

Last updated