BIS fnc interpolateWeather: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|1.00|Game version=
|1.00


|gr1 = Environment |GROUP1=
|gr1 = Environment


| <pre>/*
| <pre>/*
Line 26: Line 26:
*/
*/


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |DESCRIPTION=
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small>


| <!-- [] call [[BIS_fnc_interpolateWeather]]; --> |SYNTAX=
| <!-- [] call [[BIS_fnc_interpolateWeather]]; -->


|p1= |PARAMETER1=
|p1=


| |RETURNVALUE=
|


|x1= <code></code> |EXAMPLE1=
|x1= <code></code>


| |SEEALSO=
|


}}
}}

Revision as of 00:08, 18 January 2021

Hover & click on the images for description

Description

Description:
/*

	Description:
	Interpolate weather (overcast and fog) according to 2 boundry dates and their weather conditions.

	Parameter(s):
	_this select 0: array	- _date1 	[_year1,_month1,_day1,_hour1,_min1]
	_this select 1: array	- _weather1	[_overcast1,_fog1]
	_this select 2: array	- _date2 	[_year2,_month2,_day2,_hour2,_min2]
	_this select 3: array	- _weather2	[_overcast2,_fog2]
	_this select 4: array	- _subjectDate 	[_year,_month,_day,_hour,_min] (default: current date)

	Returns:
	[_interpolatedOvercast,_interpolatedFog]

	Example:
	[_overcast,_fog] = [[2035,1,5,24,00],[0.1,0.5],[2035,1,10,24,00],[0.3,0.2],[2035,1,7,24,00]] call BIS_fnc_interpolateWeather;
*/

(Placeholder description extracted from the function header by BIS_fnc_exportFunctionsToWiki)
Execution:
call
Groups:
Environment

Syntax

Syntax:
Syntax needed
Return Value:
Return value needed

Examples

Example 1:

Additional Information

See also:
See also needed

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


Bottom Section