This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Blue-Archive---Asset-Downlo…/reaxtract_assets.py
2021-11-08 10:47:15 +01:00

13 lines
311 B
Python

from download_assets import ROOT, RAW, EXT
import AssetBatchConverter
AssetBatchConverter.DST= EXT
import os
for root, dirs, files in os.walk(RAW):
for f in files:
if not f.endswith(".bundle"):
continue
fp = os.path.join(root, f)
AssetBatchConverter.extract_assets(fp)