setSimulWeatherLayers: Difference between revisions
| Lou Montana (talk | contribs) m (Text replacement - "|= Comments" to "|Comments=") | Killzone Kid (talk | contribs)  No edit summary | ||
| (26 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| {{ | {{RV|type=command | ||
| | arma3 | | |game1= arma3 | ||
| |version1= 1.00 | |||
| | | |gr1= Environment | ||
| | Sets number of simul weather layers, affects quality of simul weather clouds.  | |descr= Sets number of simul weather layers, affects quality of simul weather clouds. | ||
| |  | |pr= Prior to Arma 3 v2.20 the effect of this command seems to be persistent across the game instance, e.g. restarting a mission will not reset it. | ||
| | | |s1= [[setSimulWeatherLayers]] layers | ||
| |p1= layers: [[Number]] - cloud layers. -1 to reset to defaults (since 2.20), 0 to disable simul weather.  | |||
| | | |r1= [[Nothing]] | ||
| |x1= <sqf>setSimulWeatherLayers 0; // Very flat clouds</sqf> | |||
| | [[simulCloudDensity]] | |seealso= [[simulCloudDensity]] [[simulCloudOcclusion]] [[simulInClouds]] | ||
| }} | |||
| |  | {{Note | ||
| |user= Sa-Matra | |||
| |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. | |||
| }} | }} | ||
Latest revision as of 13:00, 30 December 2024
Description
- Description:
- Sets number of simul weather layers, affects quality of simul weather clouds.
- Problems:
- Prior to Arma 3 v2.20 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 - cloud layers. -1 to reset to defaults (since 2.20), 0 to disable simul weather.
- Return Value:
- Nothing
Examples
- Example 1:
- setSimulWeatherLayers 0; // Very flat clouds
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
- Posted on Aug 01, 2022 - 12:09 (UTC)
- 
You can revert clouds back to volumetric ones by executing this script:
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.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
 
	