Blender Crawl: Improvements based on User Feedback #53
@ -34,7 +34,7 @@ import uuid
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument(
|
||||
"path",
|
||||
help="Path to a file(s) or folder(s) on which to perform crawl",
|
||||
help="Path to a file(s) or folder(s) on which to perform crawl.",
|
||||
nargs='+'
|
||||
)
|
||||
|
||||
@ -48,7 +48,7 @@ parser.add_argument(
|
||||
parser.add_argument(
|
||||
"-s",
|
||||
"--script",
|
||||
help="Path to blender python script(s) to execute inside .blend files during crawl. Execution is skipped if no script is provided",
|
||||
help="Path to blender python script(s) to execute inside .blend files during crawl. Execution is skipped if no script is provided.",
|
||||
nargs='+',
|
||||
)
|
||||
parser.add_argument(
|
||||
@ -60,14 +60,14 @@ parser.add_argument(
|
||||
parser.add_argument(
|
||||
"-r",
|
||||
"--recursive",
|
||||
help="If -r is provided in combination with a folder path will perform recursive crawl",
|
||||
help="If -r is provided in combination with a folder path will perform recursive crawl.",
|
||||
action="store_true",
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
"-f",
|
||||
"--filter",
|
||||
help="Provide a string to filter the found .blend files",
|
||||
help="Provide a string to filter the found .blend files.",
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
@ -80,7 +80,7 @@ parser.add_argument(
|
||||
parser.add_argument(
|
||||
"-p",
|
||||
"--purge",
|
||||
help="Run 'built-in function to purge data-blocks from all .blend files found in crawl.'.",
|
||||
help="Run 'built-in function to purge data-blocks from all .blend files found in crawl, and saves them.",
|
||||
action="store_true",
|
||||
)
|
||||
|
||||
@ -252,7 +252,6 @@ def main() -> int:
|
||||
)
|
||||
sys.exit(0)
|
||||
|
||||
# crawl each file two times.
|
||||
for blend_file in files:
|
||||
for script in scripts:
|
||||
cmd_list = (
|
||||
|
Loading…
Reference in New Issue
Block a user