Install
Last updated:
- Published on
Install from release
下载安装
Prerequisites: Slay the Spire 2 on Steam.
Go to the GitHub releases page and download the latest
DevMode-*.zip.Locate your STS2
modsfolder. On Windows the default path is:textC:\Program Files (x86)\Steam\steamapps\common\Slay the Spire 2\modsExtract the zip so that
DevMode\is a direct subfolder ofmods\:textmods\ └── DevMode\ ├── DevMode.dll ├── DevMode.json ├── editor\ └── scripts\Launch the game — DevMode loads automatically with the mod loader.
前置条件: Steam 版《杀戮尖塔 2》。
前往 GitHub Releases 页面,下载最新的
DevMode-*.zip。找到 STS2 的
mods目录,Windows 默认路径为:textC:\Program Files (x86)\Steam\steamapps\common\Slay the Spire 2\mods将压缩包解压,使
DevMode\成为mods\的直接子目录:textmods\ └── DevMode\ ├── DevMode.dll ├── DevMode.json ├── editor\ └── scripts\启动游戏,DevMode 会随模组加载器自动载入。
Build from source
从源码构建
Additional prerequisites: .NET 9 SDK; Python 3 (optional, for make init and icon scripts).
git clone https://github.com/WRXinYue/STS2-DevMode.git
cd DevMode
make init # detect STS2 path, write local.props
make sync # build + deploy to game mods foldermake init only needs to run once. After that, make sync (or make build + make deploy separately) covers the usual iteration loop.
For the full list of Makefile targets and collaboration norms, see Contributing.
额外前置条件: .NET 9 SDK;Python 3(可选,用于 make init 和图标脚本)。
git clone https://github.com/WRXinYue/STS2-DevMode.git
cd DevMode
make init # 检测 STS2 路径,生成 local.props
make sync # 构建 + 部署到游戏 mods 目录make init 只需执行一次。此后日常迭代使用 make sync(或分步执行 make build + make deploy)即可。
完整 Makefile 目标与协作约定见 参与贡献。