Extracting Godot Game Images for Thumbnails

Channel:
Subscribers:
4,180
Published on ● Video Link: https://www.youtube.com/watch?v=IXhjO0TcIAg



Duration: 0:00
43 views
0


Note: I've only extracted files for 3 games, Backpack Battles, Brotato and Magicraft.
I don't know what I'm doing, but this is what I've figured out so far.

Python: https://www.python.org/downloads/
godot-unpacker: https://github.com/tehskai/godot-unpacker
ImageMagick: https://imagemagick.org/script/download.php

You will need to figure out the directories for,
godot-unpacker.py
BackpackBattles.pck

Win + R: cmd

py C:\Users\ltg\Downloads\godot-unpacker-master2\godot-unpacker.py "C:\Program Files (x86)\Steam\steamapps\common\Backpack Battles\BackpackBattles.pck"

My output files end up in C:\Users\ltg\BackpackBattles_pck
Yours will end up in whatever folder you were in when you ran the godot-unpacker.py command above.

cd C:\Users\ltg\BackpackBattles_pck
for /r %i in (*.png) do magick mogrify -format png "%i"