How can I add snow to my map? [Solved]
Posted: Mon Jan 19, 2009 11:14 am
how can i make my map snowing?
thx in advance !
thx in advance !
Get more from your games!
http://www.gametoast.com/
this is wrong the map hoth is snow yes but it not snowingYaNkFaN 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
G_M_StYlEr_M wrote: this is wrong the map hoth is snow yes but it not snowing
You can safely omit the XBOX and PS2 blocks from the code.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);
}