less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
245 B

  1. #!python3
  2. import importlib
  3. add_bounds = importlib.import_module("add-bounds").add_bounds
  4. import sys
  5. import os
  6. path = sys.argv[1]
  7. if "media/" not in path:
  8. path = "media/characters/" + path
  9. os.makedirs(path, exist_ok=True)
  10. add_bounds(path)