how can i make my map snowing?
thx in advance !
How can I add snow to my map? [Solved]
Moderator: Moderators
- G_M_StYlEr_M
- Rebel Sergeant

- Posts: 194
- Joined: Wed Oct 01, 2008 5:59 am
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: germany
- Contact:
How can I add snow to my map? [Solved]
Last edited by G_M_StYlEr_M on Mon Jan 19, 2009 11:56 am, edited 1 time in total.
-
YaNkFaN
- Field Commander

- Posts: 943
- Joined: Sat Dec 13, 2008 8:17 am
Re: how can i make my map snowy ?
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
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
- Rebel Sergeant

- Posts: 194
- Joined: Wed Oct 01, 2008 5:59 am
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: germany
- Contact:
Re: how can i make my map snowy ?
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
i want its snowing
-
Aman/Pinguin
- Jedi

- Posts: 1104
- Joined: Tue Jan 30, 2007 6:04 am
- Projects :: Inactive
- Location: Germany
Re: how can i make my map snowy ?
G_M_StYlEr_M wrote: this is wrong the map hoth is snow yes but it not snowing
Hidden/Spoiler:
-
YaNkFaN
- Field Commander

- Posts: 943
- Joined: Sat Dec 13, 2008 8:17 am
Re: how can i make my map snowy ?
If you want it to snow heavier then you can tweak these numbers in the .fx file:
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);
}
- G_M_StYlEr_M
- Rebel Sergeant

- Posts: 194
- Joined: Wed Oct 01, 2008 5:59 am
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: germany
- Contact:
Re: how can i make my map snowy ?
thx man this is cool

