Files
workinf_Blender_Wasm/tools/web/server-job-startup.py
mes123456 380cbed4ff
Some checks are pending
M6 deployable RC / quick (push) Waiting to run
M6 deployable RC / chromium (push) Blocked by required conditions
M6 deployable RC / release (push) Blocked by required conditions
Checkpoint web parity through Chromium input tasks
2026-08-19 10:39:03 -04:00

12 lines
311 B
Python

import bpy
import json
import sys
print(json.dumps({
"schemaVersion": 1,
"runtime": "BLENDER_BACKGROUND_FACTORY_STARTUP",
"background": bool(bpy.app.background),
"version": bpy.app.version_string,
"argv": sys.argv[sys.argv.index("--") + 1:] if "--" in sys.argv else [],
}, sort_keys=True))