Page 1 of 1

fog issues and no tissues

Posted: Sat May 06, 2006 12:44 am
by drummerzoid1
ok when i add fog it shows up a tiny bit, I want to make fog thicker. What should I do. I also may be adding fog the wrong way, what's the right way?

RE: fog issues and no tissues

Posted: Sun May 07, 2006 12:32 am
by drummerzoid1
could someone help me :(

Posted: Sun May 07, 2006 12:34 am
by -_-
okay, how are you adding it?

Posted: Sun May 07, 2006 12:38 am
by drummerzoid1
I'm putting this in my mod_id.fx file
"Effect("FogCloud")
{
Enable(1);
Texture("fluffy");
Range(60.0, 100.0);
Color(168, 172, 180, 128);
Velocity(5.0, 0.0);
Rotation(0.1);
Height(16.0);
ParticleSize(28.0);
ParticleDensity(60.0);
}

"

Posted: Sun May 07, 2006 12:40 am
by Penguin
ParticleDensity(60.0);


change those numers to make it thicker or thinner

Posted: Sun May 07, 2006 12:44 am
by -_-
drummerzoid1 wrote:I'm putting this in my mod_id.fx file
"Effect("FogCloud")
{
Enable(1);
Texture("fluffy");
Range(60.0, 100.0);
Color(168, 172, 180, 128);
Velocity(5.0, 0.0);
Rotation(0.1);
Height(16.0);
ParticleSize(28.0);
ParticleDensity(60.0);
}

"
Change the things I've bolded and you'll get a better fog. (Watch out for lag when u tweak around with Size and Density) In my case, I would usually use:
my own .fx file wrote: "Effect("FogCloud")
{
Enable(1);
Texture("fluffy");
Range(60.0, 100.0);
Color(220, 220, 220, 255);
Velocity(1.5, 0.0);
Rotation(0.1);
Height(2.5);
ParticleSize(70.0);
ParticleDensity(90.0);
}

"

Posted: Sun May 07, 2006 12:51 am
by drummerzoid1
thanks that helped