1
0
forked from 0ad/0ad

Optimizes terrain materials to reduce the total number of used combinations. Refs #6636

Differential Revision: https://code.wildfiregames.com/D4845
This was SVN commit r27299.
This commit is contained in:
Vladislav Belov 2022-12-26 06:59:06 +00:00
parent 22f7d3c543
commit 1754a3f06c
351 changed files with 2992 additions and 462 deletions

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_cliff_b.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
</terrain>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_cliff_c.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_cliff_snow.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_dirt.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_dirt.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_dirt_grass_50.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_dirt_grass_50.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_dirt_snow.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_dirt_snow.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_forrestfloor.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_forrestfloor.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_forrestfloor_snow.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_forrestfloor_snow.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_grass_rocky.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_grass_rocky.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_grass_snow_50.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_grass_snow_50.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_mountainside.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_mountainside.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_shore_rocks_grass_50.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_shore_rocks_grass_50.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_shore_rocks_icy.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_shore_rocks_icy.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_snow_b.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_snow_b.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/alpine_snow_rocky.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/alpine_snow_rocky.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_citytile.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_citytile.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_grass_a.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_grass_a.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_grass_b.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_grass_b.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_grass_c.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_grass_c.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_grass_d.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_grass_d.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_grass_dirt_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_grass_dirt_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_grass_e.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_grass_e.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/new_alpine_grass_mossy.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/new_alpine_grass_mossy.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_1.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_2.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_3.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_3_dirty.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_4.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_5.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_cliff_base.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_base.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_persia_2.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar.xml</material>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_cliff_persia_base.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_cliff_persia_base.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_dirt_badlands.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_dirt_badlands.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_dirt_persia_1.png"/>
</textures>
<material>terrain_base.xml</material>
<textures>
<texture name="baseTex" file="types/desert_dirt_persia_1.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_dirt_persia_2.png"/>
</textures>
<textures>
<texture name="baseTex" file="types/desert_dirt_persia_2.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<props angle="10.0"/>
<material>terrain_base.xml</material>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_dirt_persia_rocks.png"/>
</textures>
<textures>
<texture name="baseTex" file="types/desert_dirt_persia_rocks.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<props angle="0.0"/>
<material>terrain_base.xml</material>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_dirt_persia_rocky.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_dirt_persia_rocky.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_dirt_rocks_3_scrub.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_dirt_rocks_3_scrub.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_dirt_rough_2.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_dirt_rough_2.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_grass_a_sand.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_grass_a_sand.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_grass_a_stones.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_grass_a_stones.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_plants_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_plants_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_rough.dds"/>
</textures>
<props groups="sand" mmap="207 183 123"/>
<material>terrain_base.xml</material>
<textures>
<texture name="baseTex" file="types/desert_rough.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<props mmap="207 183 123" groups="sand"/>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_sand_dunes_50.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_sand_dunes_50.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_sand_dunes_rocks.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_sand_dunes_rocks.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/desert_sand_dunes_stones.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/desert_sand_dunes_stones.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_dirt.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_dirt.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_dirt_b.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_dirt_b.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/medit_dirt_d.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_base.xml</material>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -2,6 +2,8 @@
<terrain>
<textures>
<texture name="baseTex" file="types/medit_dirt_e.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_base.xml</material>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_farmland.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_farmland.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_grass_flowers.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_grass_flowers.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_grass_shrubs.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_grass_shrubs.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_plants_dirt.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_plants_dirt.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_riparian_mud.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_riparian_mud.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_sand.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_sand.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_sand_wet.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_sand_wet.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_sea_coral_deep.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_sea_coral_deep.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_sea_coral_plants.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_sea_coral_plants.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_sea_depths.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_sea_depths.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_shrubs.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_shrubs.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_shrubs_dry.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_shrubs_dry.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/medit_shrubs_golden.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/medit_shrubs_golden.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/ice_01.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/ice_01.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/ice_dirt.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/ice_dirt.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_cliff_a.dds"/> </textures> <material>terrain_triplanar.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_cliff_a.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_cliff_b.dds"/> </textures> <material>terrain_triplanar.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_cliff_b.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_cliff_snow.dds"/> </textures> <material>terrain_triplanar.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_cliff_snow.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_grass_snow.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_grass_snow.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_ice_b.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_ice_b.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_ice_c.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_ice_c.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_ice_cracked.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_ice_cracked.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_snow_b.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_snow_b.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_snow_rocks.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_snow_rocks.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_tundra.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_tundra.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/polar_tundra_snow.dds"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/polar_tundra_snow.dds"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_cliff_a.png"/> </textures> <material>terrain_triplanar.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_cliff_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_cliff_a_red.png"/> </textures> <material>terrain_triplanar.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_cliff_a_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_cliff_b.png"/> </textures> <material>terrain_triplanar.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_cliff_b.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_cliff_b_red.png"/> </textures> <material>terrain_triplanar.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_cliff_b_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_triplanar_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_a_red.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_a_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_b.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_b.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_b_red.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_b_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_plants_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_plants_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_rocks_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_rocks_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_rocks_a_red.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_rocks_a_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_rocks_b.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_rocks_b.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_rocks_b_red.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_rocks_b_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_rocks_c.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_rocks_c.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_dirt_rocks_c_red.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_dirt_rocks_c_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_forestfloor_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_forestfloor_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_forestfloor_b.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_forestfloor_b.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_forestfloor_b_red.png"/>
</textures>
<material>terrain_base.xml</material>
<textures>
<texture name="baseTex" file="types/savanna_forestfloor_b_red.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_grass_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_grass_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_grass_a_wetseason.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_grass_a_wetseason.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_grass_b.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_grass_b.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_grass_b_wetseason.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_grass_b_wetseason.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_mud_a.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_mud_a.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

View File

@ -1 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <terrain> <textures> <texture name="baseTex" file="types/savanna_riparian_bank.png"/> </textures> <material>terrain_base.xml</material> </terrain>
<?xml version="1.0" encoding="utf-8"?>
<terrain>
<textures>
<texture name="baseTex" file="types/savanna_riparian_bank.png"/>
<texture name="normTex" file="types/default_norm.png"/>
<texture name="specTex" file="types/blackness.dds"/>
</textures>
<material>terrain_norm_spec.xml</material>
</terrain>

Some files were not shown because too many files have changed in this diff Show More