fogParams: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
 
(27 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 1.00


|1.00|= Game version
|gr1= Environment
____________________________________________________________________________________________


| A getter for [[setFog]] (Alt Syntax). Returns extended params for the fog |= Description
|descr= A getter for [[setFog]] (Alt Syntax). Returns extended params for the fog
____________________________________________________________________________________________


| '''fogParams''' |= Syntax
|s1= [[fogParams]]


| [[Array]] - in format [[setFog]]: [fogValue, fogDecay, fogBase] |= RETURNVALUE
|r1= [[Array]] of [[Number]]s - in [[setFog]] format: [fogValue, fogDecay, fogBase]


|x1= <sqf>private _fog = fogParams;</sqf>


|x1= <code>_fog = [[fogParams]]</code> |= EXAMPLE1
|seealso= [[setFog]] [[fog]] [[fogForecast]] [[rainParams]]
}}


____________________________________________________________________________________________
{{Note
|user= POLPOX
|timestamp= 20230923065153
|text= To return a position (ASL Height)'s approx. fog level
<sqf>
private _getFogPowerASL = {
fogParams params ["_fogPower","_fogDecay","_fogHeight"] ;
private _height = _this - _fogHeight;
(_fogPower * 0.5 ^ (_height * _fogDecay / 2.45) max 0)
};


| [[setFog]], [[fog]], [[fogForecast]] |= SEEALSO
(AGLToASL (positionCameraToWorld [0,0,0]) # 2) call _getFogPowerASL;
 
</sqf>
|  |= MPBEHAVIOUR
Note that, this could return >1 value if fogDecay is not 0.
____________________________________________________________________________________________
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Environment|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]

Latest revision as of 13:39, 12 March 2024

Hover & click on the images for description

Description

Description:
A getter for setFog (Alt Syntax). Returns extended params for the fog
Groups:
Environment

Syntax

Syntax:
fogParams
Return Value:
Array of Numbers - in setFog format: [fogValue, fogDecay, fogBase]

Examples

Example 1:
private _fog = fogParams;

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
POLPOX - c
Posted on Sep 23, 2023 - 06:51 (UTC)
To return a position (ASL Height)'s approx. fog level
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;
Note that, this could return >1 value if fogDecay is not 0.