-
Notifications
You must be signed in to change notification settings - Fork 16
Snow
TheLocalPub edited this page Mar 20, 2023
·
4 revisions
The snow module generates snow and cold breathing effects. Includes effects for shivering, breathing, snow fall, and snow fog.
- Go to modules>module.sqf and enable the snow module.
- Go to modules>snow>settings.sqf
// Enables the snowfall feature
GVAR(snowfall) = false;
// Enables the snow fog feature
GVAR(snowFog) = true;
// Enables the cold breath feature
GVAR(breath) = true;
// Enables shivering
GVAR(shiver) = true;
// Enables client post processing effects for snow - not recommended.
GVAR(postProcessing) = false;
//Fog Settings
// Enables additional fog system
GVAR(fog) = true;
// Fog density from 0 - 1
GVAR(density) = 0.6; //Scale from 0-1
// Fog decay over distance
GVAR(decay) = 0;
// Fog base height. Mimics A3 fog height setting.
GVAR(baseHeight) = 0;