1
0
Fork 0

上传文件至 ''

This commit is contained in:
Chenx221 2023-01-30 12:34:21 +00:00
parent ab35863d37
commit 25d579015d
1 changed files with 34 additions and 0 deletions

34
t1.py Normal file
View File

@ -0,0 +1,34 @@
import os
import UnityPy
def unpack_all_assets(source_folder: str, destination_folder: str):
# iterate over all files in source folder
for root, dirs, files in os.walk(source_folder):
for file_name in files:
# generate file_path
file_path = os.path.join(root, file_name)
# load that file via UnityPy.load
env = UnityPy.load(file_path)
# iterate over internal objects
for obj in env.objects:
# process specific object types
if obj.type.name in ["Texture2D", "Sprite"]:
# parse the object data
data = obj.read()
# create destination path
dest = os.path.join(destination_folder, data.name)
# make sure that the extension is correct
# you probably only want to do so with images/textures
dest, ext = os.path.splitext(dest)
dest = dest + ".png"
img = data.image
img.save(dest)
if __name__ == "__main__":
unpack_all_assets("F:\\data", "F:\\data_out")