vmap.sh: add VMAP_FASTLIGHT env check

This commit is contained in:
Marco Cawthorne 2021-09-04 00:05:42 +02:00
parent 94620ee2da
commit 05fe98e0ca
Signed by: eukara
GPG Key ID: C196CD8BA993248A
1 changed files with 26 additions and 2 deletions

28
vmap
View File

@ -22,7 +22,7 @@ fi
set -e
if [ "$VMAP_NOBSP" != "1" ]; then
"$SCRPATH"/bin/vmap -v -custinfoparms -fs_basepath "$SCRPATH" -fs_game platform -threads $BUILD_PROC -samplesize 8 $*
"$SCRPATH"/bin/vmap -v -custinfoparms -fs_basepath "$SCRPATH" -fs_game platform -threads $BUILD_PROC -samplesize 4 $*
fi
if [ "$VMAP_NOVIS" != "1" ]; then
@ -34,5 +34,29 @@ if [ "$VMAP_NOVIS" != "1" ]; then
fi
if [ "$VMAP_NOLIGHT" != "1" ]; then
"$SCRPATH"/bin/vmap -light -custinfoparms -fs_basepath "$SCRPATH" -v -dirty -fs_game platform -bounce 8 -samplesize 8 -threads $BUILD_PROC -shade -shadeangle 60 -patchshadows $*
if [ "$VMAP_FASTLIGHT" != "1" ]; then
"$SCRPATH"/bin/vmap -light \
-custinfoparms \
-fs_basepath "$SCRPATH" \
-v \
-dirty \
-fs_game platform \
-bounce 8 \
-samplesize 4 \
-threads $BUILD_PROC \
-shade \
-shadeangle 60 \
-patchshadows $*
else
"$SCRPATH"/bin/vmap -light \
-custinfoparms \
-fs_basepath "$SCRPATH" \
-v \
-fs_game platform \
-samplesize 64 \
-threads $BUILD_PROC \
-shade \
-shadeangle 60 \
-patchshadows $*
fi
fi