| 123456789101112131415161718192021222324252627282930 |
- //NOTE: This file should not be rewritten manually, you can change the defined keywords via MASK MAP MODE setting and GLOBAL SHADER RESTRICTIONS setting!
- #define _TERRAIN_MASK_MAPS
- #undef _TERRAIN_NORMAL_IN_MASK
- #undef _TERRAIN_MASK_HEIGHTMAP_ONLY
-
- #define _NORMALMAPS
- #define _TERRAIN_BLEND_HEIGHT
- #define _TERRAIN_PARALLAX
- #define _TRACKS
- #ifdef INTERRA_OBJECT
- #define _OBJECT_PARALLAX
- #endif
- #define _PUDDLES
-
-
- #if defined(_TERRAIN_MASK_MAPS) || defined(_TERRAIN_NORMAL_IN_MASK) || defined(_TERRAIN_MASK_HEIGHTMAP_ONLY)
- #define TERRAIN_MASK
- #else
- #undef _TERRAIN_BLEND_HEIGHT
- #undef _TERRAIN_PARALLAX
- #undef _OBJECT_PARALLAX
- #endif
- #if (defined(_TERRAIN_TRIPLANAR) || defined(_OBJECT_TRIPLANAR) || defined(_TERRAIN_TRIPLANAR_ONE) || defined(_TRIPLANAR_ONE) || defined(_TRIPLANAR_ALL) ) && !defined(_TERRAIN_BASEMAP_GEN)
- #define TRIPLANAR
- #endif
- #if defined(_TERRAIN_PARALLAX) || defined(_OBJECT_PARALLAX)
- #define PARALLAX
- #endif
|