Page 1 of 1

How can I add snow to my map? [Solved]

Posted: Mon Jan 19, 2009 11:14 am
by G_M_StYlEr_M
how can i make my map snowing?
thx in advance !

Re: how can i make my map snowy ?

Posted: Mon Jan 19, 2009 11:22 am
by YaNkFaN
well first you need the right textures and lighting and yea that's not what i think you want.

If you want it to actually snow in your map you could a) search and most likely find something on the forum or i'll just tell you

you need to go into a snowy level *cough hoth cough* and find the file hoth1.fx

copy this into data_abc/worlds/abc/world1 and rename it abc.fx then if you want it to snow heavier you can tweak the numbers in the .fx file

Re: how can i make my map snowy ?

Posted: Mon Jan 19, 2009 11:45 am
by G_M_StYlEr_M
YaNkFaN wrote:well first you need the right textures and lighting and yea that's not what i think you want.

If you want it to actually snow in your map you could a) search and most likely find something on the forum or i'll just tell you

you need to go into a snowy level *cough hoth cough* and find the file hoth1.fx

copy this into data_abc/worlds/abc/world1 and rename it abc.fx then if you want it to snow heavier you can tweak the numbers in the .fx file
this is wrong the map hoth is snow yes but it not snowing
i want its snowing

Re: how can i make my map snowy ?

Posted: Mon Jan 19, 2009 12:16 pm
by Aman/Pinguin
G_M_StYlEr_M wrote: this is wrong the map hoth is snow yes but it not snowing
Hidden/Spoiler:
Image
Seems pretty "snowing" to me...

Re: how can i make my map snowy ?

Posted: Mon Jan 19, 2009 12:19 pm
by YaNkFaN
If you want it to snow heavier then you can tweak these numbers in the .fx file:
Effect("Precipitation")
{
Enable(1);
Type("Quads");
Texture("fx_snow");
ParticleSize(0.015);
Color(255, 255, 255);
Range(15.0);
Velocity(2.0);
VelocityRange(0.8);
PS2()
{
ParticleDensity(80.0);
}
XBOX()
{
ParticleDensity(100.0);
}
PC()
{
ParticleDensity(100.0);
}
ParticleDensityRange(0.0);
CameraCrossVelocityScale(1.0);
CameraAxialVelocityScale(1.0);
AlphaMinMax(0.3, 0.45);
RotationRange(2.0);
}
You can safely omit the XBOX and PS2 blocks from the code.

Re: how can i make my map snowy ?

Posted: Mon Jan 19, 2009 12:21 pm
by G_M_StYlEr_M
thx man this is cool