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.
|
- #!python3
-
- import importlib
-
- add_bounds = importlib.import_module("add-bounds").add_bounds
-
- import sys
- import os
- path = sys.argv[1]
-
- if "media/" not in path:
- path = "media/characters/" + path
-
- os.makedirs(path, exist_ok=True)
-
- add_bounds(path)
|