Too lazy to comment

This commit is contained in:
2019-12-30 18:15:17 +01:00
parent 7fe19ee89f
commit 774dda8b90
13 changed files with 339 additions and 11 deletions

View File

@@ -2,12 +2,19 @@
IN=./zombietest.map
OUT=zombietest.bsp
DIR="$( cd -P "$( dirname "$0" )" && pwd )"
TOOLS_DIR=${DIR}/../../tools/eric_tools
TOOLS_DIR=${DIR}/../../tools/ericw_tools
QBSP=${TOOLS_DIR}/qbsp
VIS=${TOOLS_DIR}/vis
LIGHT=${TOOLS_DIR}/light
${QBSP} ${IN} ${OUT}
${VIS} -fast -level 4 -noambient ${OUT}
${LIGHT} -soft -extra -extra4 ${OUT}
${LIGHT} -bounce -soft -extra -extra4 ${OUT}
:
#!/bin/bash
DIR="$( cd -P "$( dirname "$0" )" && pwd )"
ROOT=${DIR}/../../
pushd ${ROOT}
./quakespasm-sdl2 +map zombietest
popd