Environment - Effects – Arma 2
Jump to navigation
Jump to search
m (added couple of links) |
Lou Montana (talk | contribs) m (Text replacement - "ArmA( |_)2" to "Arma 2") |
||
Line 1: | Line 1: | ||
[[Category: | [[Category:Arma 2: Editor Modules]] | ||
<span style="color:#CC0000;">'''ARMA 2: Operation Arrowhead ONLY'''</span> | <span style="color:#CC0000;">'''ARMA 2: Operation Arrowhead ONLY'''</span> | ||
Revision as of 12:13, 2 May 2020
ARMA 2: Operation Arrowhead ONLY
Module creates environmental effects such as dust, mist, snow and clouds. The effects depend on the time of the day and season (summer, winter etc).
Method used to determine current time of day
_daytime = 0.5 - abs(daytime - 12) / 12
Commented by module maker: 0 = night, 1 = day, 0.5 = sunset/sunrise
Default requirements for specific effect to be enabled
- Snow
- overcast > 0.35
- winter: November - February
- Mist
- abs _daytime < 0.1
- Clouds
Initialization
Startup
F7 > Environment - Effects
Optional parameters
Set variables to module with desired values
- intensity = <number>; - Intensity, range is probably from 0 to 1.
- Example: this setvariable ["intensity",0.5];
- Default value: 0.8
- delay = <number>; - Delay in seconds before effects are enabled.
- Example: this setvariable ["delay",30];
- Default value: 1
- particleEffects = <array>; - List of enabled effects. 0 = snow, 1 = dust, 2 = clouds and 3 = mist
- Example: this setvariable ["particleEffects",[1,2]];
- Default value: [0,1,2,3]
- center = <object>; - Object the effects will be center to.