diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-27 00:55:20 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-27 00:55:23 +0200 |
commit | 9a5eb8ddf73fecc0ef5907983e136a1018937621 (patch) | |
tree | 3c692f6e7702c59abffa19c7b5c1da868b0f0c7b /client/system/cli.gd | |
parent | 2ff484a85dec4abed71071ba509ac5cd307ff2f9 (diff) | |
download | hurrycurry-9a5eb8ddf73fecc0ef5907983e136a1018937621.tar hurrycurry-9a5eb8ddf73fecc0ef5907983e136a1018937621.tar.bz2 hurrycurry-9a5eb8ddf73fecc0ef5907983e136a1018937621.tar.zst |
Add client cli tool to render tiles/items to PNG
Diffstat (limited to 'client/system/cli.gd')
-rw-r--r-- | client/system/cli.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/system/cli.gd b/client/system/cli.gd index 7a312127..d503d536 100644 --- a/client/system/cli.gd +++ b/client/system/cli.gd @@ -29,6 +29,10 @@ static var OPTIONS := [ Option.new("h", "help", Mode.FLAG, "Show help"), Option.new("s", "setting", Mode.MULTI_OPTION, "Per-launch setting override"), Option.new("c", "join-command", Mode.OPTION, "Message to send right after initial joining"), + Option.new(null, "render-items", Mode.OPTION, "Render items from text file to images"), + Option.new(null, "render-tiles", Mode.OPTION, "Render tiles from text file to images"), + Option.new(null, "render-resolution", Mode.OPTION, "Resolution for rendering items or tiles"), + Option.new(null, "render-output", Mode.OPTION, "Output directory for rendering items or tiles"), Option.new(null, "connect_address", Mode.POSITIONAL, "Connect to a server directly without menu interaction") ] |