09-12-2015, 11:38 PM
(This post was last modified: 09-12-2015, 11:39 PM by Random Talking Bush.)
Code:
for /R %%a IN (*.gtx) DO "*PATH TO TEXCONV2 FOLDER*\texconv2.exe" -i "%%a" -o "%%~dpna.dds"
Put that in a .BAT file, then copy it and run just the batch file to whatever folder you want to convert the files in the folders for. The DDS files will be in the same folder as the GTX textures when it's done converting instead of going to the "Convert" folder.
Code:
for /R %%a IN (*.gtx) DO "*PATH TO TEXCONV2 FOLDER*\texconv2.exe" -i "%%a" -f GX2_SURFACE_FORMAT_TCS_R8_G8_B8_A8_SRGB -o "%%~dpna.gtx"
And this .BAT file will pre-convert them to the "lossless" format, you can run that before the other one if you need to.