Snow - Global-Conflicts-ArmA/Olsen-Framework-Arma-3 GitHub Wiki

Description

The snow module generates snow and cold breathing effects. Includes effects for shivering, breathing, snow fall, and snow fog.

Usage

  1. Go to modules>module.sqf and enable the snow module.
  2. 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;