Skip to content

Instantly share code, notes, and snippets.

@LolHacksRule
Created January 9, 2021 01:25
Show Gist options
  • Save LolHacksRule/e431dea486db48ad018a38ff0309d841 to your computer and use it in GitHub Desktop.
Save LolHacksRule/e431dea486db48ad018a38ff0309d841 to your computer and use it in GitHub Desktop.
Ubisoft LyN Engine (Wii U) *.TDT > *.GTX
# run within an extracted game data directory (having TDT files)
# recursively snips header from .TDT files to be readable as Wii U GTX texture files
find . -name "*.tdt" -exec sh -c 'tail -c +15 "$1" > "$1.gtx"' x {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment