14 lines
323 B
Python
14 lines
323 B
Python
import sys, os
|
|
from args import inputAssets
|
|
from processasset import processAsset
|
|
|
|
# Setup headers directory.
|
|
# setOutputDir(args.output)
|
|
# outputHeaders = []
|
|
|
|
# # Create output directory if it doesn't exist
|
|
# if not os.path.exists(args.output):
|
|
# os.makedirs(args.output)
|
|
|
|
for asset in inputAssets:
|
|
processAsset(asset) |