1
0
mirror of synced 2025-01-18 22:24:04 +01:00

Organize help for render command a bit.

This commit is contained in:
Jennifer Taylor 2021-05-23 20:30:35 +00:00
parent 2aa37c2e40
commit 8e52428d76

View File

@ -256,12 +256,6 @@ def main() -> int:
default="out.gif",
help='The output file (ending either in .gif, .webp or .png) where the render should be saved.',
)
render_parser.add_argument(
"-v",
"--verbose",
action="store_true",
help="Display verbuse debugging output",
)
render_parser.add_argument(
"--background-color",
type=str,
@ -284,19 +278,25 @@ def main() -> int:
"--scale-width",
type=float,
default=1.0,
help="Scale the width of the animation by some factor.",
help="Scale the width of the animation by some factor, such as 2.0 or 0.5.",
)
render_parser.add_argument(
"--scale-height",
type=float,
default=1.0,
help="Scale the height of the animation by some factor.",
help="Scale the height of the animation by some factor, such as 2.0 or 0.5.",
)
render_parser.add_argument(
"--disable-threads",
action="store_true",
help="Disable multi-threaded rendering.",
)
render_parser.add_argument(
"-v",
"--verbose",
action="store_true",
help="Display verbuse debugging output",
)
list_parser = subparsers.add_parser('list', help='List out the possible paths to render from a series of SWFs')
list_parser.add_argument(