simulCloudOcclusion: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\{\{GameCategory\|(arma[0123])\|[ _]?New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
| arma3 |Game name= | | arma3 |Game name= | ||
Line 7: | Line 6: | ||
|gr1= Environment |GROUP1= | |gr1= Environment |GROUP1= | ||
| Returns clouds occlusion between two given points (0 - no clouds, 1 - full clouds). |DESCRIPTION= | | Returns clouds occlusion between two given points (0 - no clouds, 1 - full clouds). |DESCRIPTION= | ||
| '''simulCloudOcclusion''' [pos1,pos2] |SYNTAX= | | '''simulCloudOcclusion''' [pos1,pos2] |SYNTAX= | ||
Line 22: | Line 19: | ||
|x1= <code>canSeeSun = ('''simulCloudOcclusion''' == 0)</code>|EXAMPLE1= | |x1= <code>canSeeSun = ('''simulCloudOcclusion''' == 0)</code>|EXAMPLE1= | ||
| [[setSimulWeatherLayers]], [[simulCloudDensity]], [[simulInClouds]] |SEEALSO= | | [[setSimulWeatherLayers]], [[simulCloudDensity]], [[simulInClouds]] |SEEALSO= | ||
| |MPBEHAVIOUR= | | |MPBEHAVIOUR= | ||
}} | }} | ||
Revision as of 03:47, 17 January 2021
Description
- Description:
- Returns clouds occlusion between two given points (0 - no clouds, 1 - full clouds).
- Groups:
- Environment
Syntax
- Syntax:
- simulCloudOcclusion [pos1,pos2]
- Parameters:
- [pos1,pos2]: Array
- pos1: Position
- pos2: Position
- Return Value:
- Number
Examples
- Example 1:
canSeeSun = (simulCloudOcclusion == 0)
Additional Information
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
Notes
- Posted on 8 August, 2014 - 12:17
- Waffle SS.
- The simulCloudOcclusion command is not recognized on dedicated servers, and will produce an error. If you use this command, it cannot be anywhere within a script that is run on the dedicated server, or the entire script will halt. To get around this, you can use:
if !isDedicated then {[] execVM "simulCloudOcclusionScript.sqf"};