fogParams: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 21: | Line 21: | ||
|timestamp= 20230923065153 | |timestamp= 20230923065153 | ||
|text= To return a position (ASL Height)'s approx. fog level | |text= To return a position (ASL Height)'s approx. fog level | ||
<sqf>private _getFogPowerASL = { | <sqf> | ||
private _getFogPowerASL = { | |||
fogParams params ["_fogPower","_fogDecay","_fogHeight"] ; | |||
private _height = _this - _fogHeight; | |||
(_fogPower * 0.5 ^ (_height * _fogDecay / 2.45) max 0) | |||
}; | }; | ||
(AGLToASL (positionCameraToWorld [0,0,0])#2) call _getFogPowerASL</sqf> | (AGLToASL (positionCameraToWorld [0,0,0]) # 2) call _getFogPowerASL; | ||
</sqf> | |||
Note that, this could return >1 value if fogDecay is not 0. | Note that, this could return >1 value if fogDecay is not 0. | ||
}} | }} |
Latest revision as of 12:39, 12 March 2024
Description
- Description:
- A getter for setFog (Alt Syntax). Returns extended params for the fog
- Groups:
- Environment
Syntax
Examples
- Example 1:
Additional Information
- See also:
- setFog fog fogForecast rainParams
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on Sep 23, 2023 - 06:51 (UTC)
- To return a position (ASL Height)'s approx. fog level Note that, this could return >1 value if fogDecay is not 0.