Move mods to config dir & updates for macOS

This commit is contained in:
Luke Street
2026-04-24 09:52:04 -06:00
parent b7f9bc91b4
commit e25a1f3ef6
6 changed files with 28 additions and 5 deletions
+4
View File
@@ -51,6 +51,10 @@ add_dusk_mod(my_mod
After building, `my_mod.dusk` is placed in `mods/` next to the project root (`DUSK_MODS_OUTPUT_DIR` cache variable). Copy it to the game's `mods/` folder and launch.
- Windows: `%APPDATA%\TwilitRealm\Dusk\mods`
- Linux: `~/.local/share/TwilitRealm/Dusk/mods`
- macOS: `~/Library/Application Support/TwilitRealm/Dusk/mods`
The `.dusk` archive is a standard zip containing `mod.json`, the compiled library, and an optional `res/` tree. `add_dusk_mod()` creates it automatically.
---