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>
24 lines
530 B
Batchfile
24 lines
530 B
Batchfile
@echo off
|
|
rem
|
|
rem buildbld.bat
|
|
rem
|
|
echo.
|
|
echo PROCESSING TEXTURE FILES...
|
|
echo.
|
|
rem ----------------------
|
|
rem BT Base building Texture Maps
|
|
rem ----------------------
|
|
img2vtx -b -o sbase.bsl -s 128,128 -m0 sbase1.tga -m1 sbase2.tga -m2 sbase3.tga -m3 sbase4.tga -m4 sbase5.tga -m5 sbase6.tga
|
|
if errorlevel 1 goto error
|
|
echo.
|
|
img2vtx -b -o sainta.tga
|
|
img2vtx -b -o saintb.tga
|
|
if errorlevel 1 goto error
|
|
echo.
|
|
echo texture files processed.
|
|
goto end
|
|
:error
|
|
echo.
|
|
echo PROCESSING FAILED - SEE ABOVE
|
|
:end
|
|
|