vtf2tga

Stertman

Newbie
Joined
Mar 24, 2005
Messages
128
Reaction score
0
When i drag the vtf file onto the vtf2tga tool, where does the tga file goes?
 
I think it goes in the materials src folder. It should be right by the file you use to start vtf2tga.
 
I use this .bat file but it just makes the folder tgas, it doesnt place any .tga's in it..

@ECHO OFF
echo Usage: Place all vtfs to be converted and this bat file
echo in the same directory with vtf2tga.exe. The converted
echo tgas will be in a folder called tgas.
pause
mkdir tgas
for %%f in (*.vtf) do vtf2tga %%f tgas\%%f
ren tgas\*.vtf *.tga
cls
set /p userinp=Delete originals?(y/n)
set userinp=%userinp:~0,1%
if "%userinp%"=="y" goto delete
goto end
:delete
del *.vtf
:end
 
Back
Top