From: Rudolf Polzer Date: Thu, 15 Jul 2010 18:49:40 +0000 (+0200) Subject: make the repo pass the audit; move two textures to nexcompat (actually, q3 compat) X-Git-Tag: xonotic-v0.1.0preview~154^2~1 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-maps.pk3dir.git;a=commitdiff_plain;h=0fe9fbff96d052db5528e688d752da9e8d2e1e27 make the repo pass the audit; move two textures to nexcompat (actually, q3 compat) --- diff --git a/scripts/common.shader b/scripts/common.shader index db7e2841..f544e10e 100644 --- a/scripts/common.shader +++ b/scripts/common.shader @@ -216,7 +216,7 @@ textures/common/warpzone surfaceparm trans surfaceparm nomarks { - map textures/common/mirror1.tga // fully transparent + map textures/common/warpzone/trans.tga // fully transparent blendfunc blend } dp_camera @@ -226,7 +226,7 @@ textures/common/warpzone textures/common/camera { { - map textures/common/mirror1.tga // fully transparent + map textures/common/warpzone/trans.tga // fully transparent blendfunc blend } dp_camera diff --git a/scripts/shader-audit.sh b/scripts/shader-audit.sh index 8076dea9..9b5d9d94 100644 --- a/scripts/shader-audit.sh +++ b/scripts/shader-audit.sh @@ -165,5 +165,11 @@ textures_avail=`( cd ..; find textures/ -type f -not -name '*_norm.*' -not -name textures_used=`echo "${textures_used#$LF}" | sort -u` echo "$textures_used$LF$textures_used$LF$textures_avail" | sort | uniq -u | while IFS= read -r L; do - echo "(EE) texture $L is not referenced by any shader" + case "$L" in + textures/radiant/*) + ;; + *) + echo "(EE) texture $L is not referenced by any shader" + ;; + esac done diff --git a/textures/common/mirror1.tga b/textures/common/mirror1.tga deleted file mode 100644 index 2f2d6544..00000000 Binary files a/textures/common/mirror1.tga and /dev/null differ diff --git a/textures/common/warpzone/trans.tga b/textures/common/warpzone/trans.tga new file mode 100644 index 00000000..2f2d6544 Binary files /dev/null and b/textures/common/warpzone/trans.tga differ diff --git a/textures/common/white.tga b/textures/common/white.tga deleted file mode 100644 index fa786f29..00000000 Binary files a/textures/common/white.tga and /dev/null differ