Use AssetRipper to export assets from Timberborn. You can follow the instructions in the TimberAPI docs on how to do this, but note the following:
- You do not need Unity Editor or Thunderkit installed, only AssetRipper
- Before loading game data, under
View
>Settings
change:Bundled Assets Export Mode
toDirect Export
Script Export format
toDecompiled
Then run:
$ python3 timbertrees.py \
-d $exported/ExportedProject/
If you'd like to parse assets from mods as well, then follow these additional steps:
- Make a copy of the mod outside of the Timberborn Mods folder
- Export the mod's assets to a subdirectory of the directory containing manifest.json
- Include the additional mod's exported locations in the command, eg:
$ python3 timbertrees.py \
-d $exported/ExportedProject/ \
-d $mod1-abc/exported/ExportedProject/ \
-d $mod2_1.2.3-xyz/Mod2/exported/ExportedProject/