Page 1 of 1

How do i change the Lowrez Terrain texture? [Solved]

Posted: Thu Nov 24, 2011 8:16 pm
by ps2owner
How can I change the lowrez terrain texture of the map? Thanks.

Re: How to change Lowrez Terrain? Asking a lot today.

Posted: Thu Nov 24, 2011 8:26 pm
by Marth8880
In the SKY file. You can also define a bump map for the terrain in the same file.
tat2.sky wrote:DomeInfo()
{
Texture("SKY_Tatooine2.tga");
Angle(-90.000000);
Ambient(255.000000, 255.000000, 255.000000);
Filter(1);
Threshold(150);
Intensity(50);
TerrainColorDarkening();

Softness(1);
SoftnessParam(60);

XBOX()
{
TerrainBumpTexture("tat2_bump", 1.0);
}
PC()
{
TerrainBumpTexture("tat2_bump", 1.0);
}

DomeModel()
{
Geometry("tat2_sky_dome");
}

LowResTerrain()
{
Texture("tat2");
PatchResolution(4);
MaxDistance(3000);
}


}

Re: How to change Lowrez Terrain? Asking a lot today.

Posted: Thu Nov 24, 2011 8:33 pm
by ps2owner
Thanks! I'll try and put this to use. I'm working on a snowy night hilly level and need to make the non LOD terrain pretty black for night.