Skip to content

Commit

Permalink
fix description of --quality cli option
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtThiemann committed Mar 16, 2023
1 parent ee60b09 commit 130f67d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ OPTIONS
--quality, -q When generating very small icons, small issues (like
z-fighting of faces close to each other) can occur. This
option allows rendering images in a higher resolution and
scaling them down for the final texture atlas. Default: 2
scaling them down for the final icon. Default: 2
--size, -s Size of the generated item icons. Default: 64
--sync Don't use multithreading. Default: false
```
Expand Down
2 changes: 1 addition & 1 deletion renderchest
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $cli->description("Generate icons and css for Minecraft items.")
->opt("namespace:n", "Asset namespace that the items should be rendered from. Default: minecraft", false, "string[]")
->opt("size:s", "Size of the generated item icons. Default: 64", false, "integer")
->opt("quality:q", "When generating very small icons, small issues (like z-fighting of faces close to each other) can occur. " .
"This option allows rendering images in a higher resolution and scaling them down for the final texture atlas. Default: 2", false, "integer")
"This option allows rendering images in a higher resolution and scaling them down for the final icon. Default: 2", false, "integer")
->opt("item-list:i", "Create a JSON file containing the names of all rendered items.", false, "boolean")
->opt("output:o", "Output directory", true)
->opt("prefix:p", "Prefix to use for CSS classes. Default: rc-")
Expand Down

0 comments on commit 130f67d

Please sign in to comment.