Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
23 lines
559 B
Batchfile
23 lines
559 B
Batchfile
@echo off
|
|
rem
|
|
rem buildtex.bat
|
|
rem
|
|
echo.
|
|
echo PROCESSING TEXTURE FILES...
|
|
echo.
|
|
rem --------------
|
|
rem Texture Maps
|
|
rem --------------
|
|
img2vtx -b -o steh.bsl -s 256,256 -m0 steh1.tga -m1 steh2.tga -m2 steh3.tga -m3 steh4.tga -m4 steh5.tga -m5 steh6.tga
|
|
if errorlevel 1 goto error
|
|
echo.
|
|
img2vtx -b -o klng.bsl -s 256,256 -m0 klng1.tga -m1 klng2.tga -m2 klng3.tga -m3 klng4.tga -m4 klng5.tga -m5 klng6.tga
|
|
if errorlevel 1 goto error
|
|
echo.
|
|
echo texture files processed.
|
|
goto end
|
|
:error
|
|
echo.
|
|
echo PROCESSING FAILED - SEE ABOVE
|
|
:end
|