Teach export.py to skip files

This commit is contained in:
Segey Lapin
2019-10-17 12:32:41 +03:00
parent ddd4ded627
commit e61d0dc44b
2 changed files with 5 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
{
"skip": true
}

View File

@@ -128,6 +128,8 @@ def main():
config[k] = set(v)
else:
config[k] = v
if config.has_key("skip") and config["skip"]:
continue
# export blend file
print("---------")
print("Exporting {}".format(os.path.abspath(item_abspath)))