We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RENPY_SCREENSHOT_PATTERN
1 parent 8b6590f commit 18b7631Copy full SHA for 18b7631
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
All notable changes to this project will be documented in this file.
4
5
+## Unreleased
6
+
7
+- Set `RENPY_SCREENSHOT_PATTERN` on launched processes if not overwritten by any other environment
8
9
## 3.3.2 - 2026-02-23
10
11
fix a bug relating to version strings
src/lib/launch.ts
@@ -166,6 +166,7 @@ export async function launch_renpy({
166
}
167
168
const process_env: Record<string, string | undefined> = {
169
+ RENPY_SCREENSHOT_PATTERN: path.join(project_root, "screenshot%04d.png"),
170
...process.env,
171
...(get_config("processEnvironment") as object),
172
...extra_environment,
0 commit comments