Organize help for render command a bit.
This commit is contained in:
parent
2aa37c2e40
commit
8e52428d76
@ -256,12 +256,6 @@ def main() -> int:
|
|||||||
default="out.gif",
|
default="out.gif",
|
||||||
help='The output file (ending either in .gif, .webp or .png) where the render should be saved.',
|
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(
|
render_parser.add_argument(
|
||||||
"--background-color",
|
"--background-color",
|
||||||
type=str,
|
type=str,
|
||||||
@ -284,19 +278,25 @@ def main() -> int:
|
|||||||
"--scale-width",
|
"--scale-width",
|
||||||
type=float,
|
type=float,
|
||||||
default=1.0,
|
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(
|
render_parser.add_argument(
|
||||||
"--scale-height",
|
"--scale-height",
|
||||||
type=float,
|
type=float,
|
||||||
default=1.0,
|
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(
|
render_parser.add_argument(
|
||||||
"--disable-threads",
|
"--disable-threads",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Disable multi-threaded rendering.",
|
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 = subparsers.add_parser('list', help='List out the possible paths to render from a series of SWFs')
|
||||||
list_parser.add_argument(
|
list_parser.add_argument(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user