Page 1 of 1

Low-rez mist?

Posted: Sat Jun 27, 2009 3:45 pm
by sampip
I was just wondering if i could get rid of this sort of effect, you see that the trees are sort of white coloured, and from further out, they are just pretty much white silhouttes:
Hidden/Spoiler:
Image
it almost looks like they are in some kind of... mist?
any ideas?

Re: Low-rez mist?

Posted: Sat Jun 27, 2009 3:51 pm
by B.I.G_Cookie
I believe thats an effect from the sky file or from the .fx file from the world1 folders.
You can see this effetcs on Mygeeto / Hoth and on some other maps.

search in your .fx file or in your .sky file for this effect.

Re: Low-rez mist?

Posted: Sat Jun 27, 2009 4:11 pm
by AQT
That's not an effect but rather the fog range setting. In your .sky file, I would replace your SkyInfo section with this:
Hidden/Spoiler:
[code]SkyInfo()
{
Enable(1);

PS2()
{
NearSceneRange(0.100000, 70.000000, 100.000000);
NearSplitScreenRange(0.100000, 50.000000, 60.000000);
FarSceneRange(3000.000000);
}
PC()
{
NearSceneRange(100.0, 150.0, 150.0, 200.0);
FarSceneRange(200.000000, 1000.0);
}
XBOX()
{
NearSceneRange(0.200000, 90.000000, 130.000000);
NearSplitScreenRange(0.200000, 70.000000, 100.000000);
FarSceneRange(3000.000000);
}
}[/code]
That should get rid of the "fogginess" completely.