Page 1 of 1

Clearness?

Posted: Sun Sep 23, 2007 8:27 am
by wazmol
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

Re: Clearness?

Posted: Sun Sep 23, 2007 2:59 pm
by Taivyx

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.