clouds are now excluded from texture warping

This commit is contained in:
Valerie Wolfe 2024-04-19 21:02:59 -04:00
parent 58cd744a2f
commit a0dcb98e96
2 changed files with 5 additions and 2 deletions

View file

@ -24,8 +24,10 @@ void main() {
gl_Position = ftransform();
#endif
#ifdef tWarp
texture_warp();
#ifndef NO_TWARP
#ifdef tWarp
texture_warp();
#endif
#endif
#ifndef NON_WORLD

View file

@ -1,2 +1,3 @@
#define NO_TWARP
#define NON_WORLD
#include "/gbuffers_basic.vsh"