setSimulWeatherLayers: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\{\{GameCategory\|(arma[0123])\|[ _]?New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}")
No edit summary
 
(20 intermediate revisions by 3 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


|gr1= Environment |GROUP1=
|descr= Sets number of simul weather layers, affects quality of simul weather clouds.
____________________________________________________________________________________________


| Sets number of simul weather layers, affects quality of simul weather clouds. |DESCRIPTION=
|pr= The effect of this command seems to be persistent across the game instance, e.g. restarting a mission will not reset it.
____________________________________________________________________________________________


| '''setSimulWeatherLayers''' layers |SYNTAX=
|s1= [[setSimulWeatherLayers]] layers


|p1= layers: [[Number]] |PARAMETER1=
|p1= layers: [[Number]]
| [[Nothing]] |RETURNVALUE=


|r1= [[Nothing]]


|x1= <code></code>|EXAMPLE1=
|x1= <sqf>setSimulWeatherLayers 0; // Very flat clouds</sqf>


____________________________________________________________________________________________
|seealso= [[simulCloudDensity]] [[simulCloudOcclusion]] [[simulInClouds]]
}}


| [[simulCloudDensity]], [[simulCloudOcclusion]], [[simulInClouds]] |SEEALSO=  
{{Note
 
|user= samatra
|  |MPBEHAVIOUR=  
|timestamp= 20220801120941
____________________________________________________________________________________________
|text= You can revert clouds back to volumetric ones by executing this script:
<sqf>
private _display_menu = findDisplay 46 createDisplay "RscDisplayInterrupt"; // ESC menu
ctrlActivate (_display_menu displayCtrl 301); // Pressing "Video" button
ctrlActivate (findDisplay 5 displayCtrl 2); // Pressing "Cancel" in Video menu
_display_menu closeDisplay 2; // Closing ESC menu
</sqf>
Pressing "Cancel" button in Video menu makes engine re-init the clouds, reverting results of this command. Make sure its in unscheduled environment, otherwise players might see flashing menu and you'll have a serialization error message.
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
{{GameCategory|arma3|New Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Latest revision as of 14:14, 1 August 2022

Hover & click on the images for description

Description

Description:
Sets number of simul weather layers, affects quality of simul weather clouds.
Problems:
The effect of this command seems to be persistent across the game instance, e.g. restarting a mission will not reset it.
Groups:
Environment

Syntax

Syntax:
setSimulWeatherLayers layers
Parameters:
layers: Number
Return Value:
Nothing

Examples

Example 1:
setSimulWeatherLayers 0; // Very flat clouds

Additional Information

See also:
simulCloudDensity simulCloudOcclusion simulInClouds

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
samatra - c
Posted on Aug 01, 2022 - 12:09 (UTC)
You can revert clouds back to volumetric ones by executing this script:
private _display_menu = findDisplay 46 createDisplay "RscDisplayInterrupt"; // ESC menu ctrlActivate (_display_menu displayCtrl 301); // Pressing "Video" button ctrlActivate (findDisplay 5 displayCtrl 2); // Pressing "Cancel" in Video menu _display_menu closeDisplay 2; // Closing ESC menu
Pressing "Cancel" button in Video menu makes engine re-init the clouds, reverting results of this command. Make sure its in unscheduled environment, otherwise players might see flashing menu and you'll have a serialization error message.