01-30-2022, 03:48 PM
Great tutorial! Just want to add you can replace steps 9 and 10 with something WAY simpler. Instead of creating a batch file and copying it to every single folder, go to the parent folder that contains all the texture folders created by the BMS script, hold shift and right click in the file explorer. Click "Open PowerShell window here". If it says "Open command window here" instead, click that, type in "powershell" (no quotes) and hit enter. Finally, copy, paste, and hit enter on the following command:
Get-ChildItem -File -Recurse | % { Rename-Item -Path $_.PSPath -NewName $_.Name.replace(".tbody",".dds")}
which will automatically rename all .tbody files to .dds. No more soul crushing required (unless you are masochistic).
Get-ChildItem -File -Recurse | % { Rename-Item -Path $_.PSPath -NewName $_.Name.replace(".tbody",".dds")}
which will automatically rename all .tbody files to .dds. No more soul crushing required (unless you are masochistic).