Clearness?

In this forum you will find and post information regarding the modding of Star Wars Battlefront 2. DO NOT POST MOD IDEAS/REQUESTS.

Moderator: Moderators

Post Reply
wazmol
High General
High General
Posts: 892
Joined: Sat Sep 02, 2006 6:47 pm
Projects :: Thinking...
Games I'm Playing :: Black Ops
Location: London
Contact:

Clearness?

Post 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
Taivyx
2008 Best Games Related Avatar
Posts: 1706
Joined: Thu Jun 07, 2007 3:34 pm
Projects :: Terra Strife - discontinued
Games I'm Playing :: none
xbox live or psn: No gamertag set
Contact:

Re: Clearness?

Post 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.
Post Reply