in my map at the moment the battlefield isnt very clear, like you can just about see the outline of objects, i have a picture of what i mean:
http://img206.imageshack.us/img206/3271/notrightqo0.png
can you tell me how i can make it so i can see details of objects and how i can see more of the battlefield not just 1 foot away from me!?
thanks in advance
Clearness?
Moderator: Moderators
-
wazmol
- High General

- Posts: 892
- Joined: Sat Sep 02, 2006 6:47 pm
- Projects :: Thinking...
- Location: London
- Contact:
-
Taivyx
- 2008 Best Games Related Avatar
- Posts: 1706
- Joined: Thu Jun 07, 2007 3:34 pm
- Projects :: Terra Strife - discontinued
- xbox live or psn: No gamertag set
- Contact:
Re: Clearness?
Code: Select all
Effect("Blur")
{
PS2()
{
Enable(1);
Mode(1)
ConstantBlend(0.35)
DownSizeFactor(0.35)
}
PC()
{
Enable(0);
Mode(1)
ConstantBlend(0.3)
DownSizeFactor(0.25)
}
XBOX()
{
Enable(1);
Mode(1)
ConstantBlend(0.3)
DownSizeFactor(0.25)
}
}Code: Select all
Effect("FogCloud")
{
Enable(1);
Texture("fx_fluffy.tga");
Range(30.0, 60.0);
Color(168, 172, 180, 128);
Velocity(5.0, 0.0);
Rotation(0.0);
Height(10.0);
ParticleSize(20.0);
ParticleDensity(30.0);
}
Effect("MotionBlur")
{
Enable(1);
}
Effect("ScopeBlur")
{
Enable(1);
}
If you're using shipped felucia fx file, delete those two sections of it.
