make-ktx-batch.bat 378 B

123456789
  1. echo off
  2. REM create compressed textures for each .jpg & .png in the current directory
  3. REM arg 1: Q when best image required, else D for developer quality
  4. REM erasing of any previous file
  5. erase ktx-batch.bat
  6. for %%f in (*.jpg) do echo call ktx-files.bat %%f %%~nf 'N' '%1' >>ktx-batch.bat
  7. for %%f in (*.png) do echo call ktx-files.bat %%f %%~nf 'Y' '%1' >>ktx-batch.bat