2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-17 22:11:53 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Restores the atmospheric data defaults
|
|
|
|
*
|
|
|
|
* Arguments:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2015-04-17 22:11:53 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2015-04-17 22:11:53 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_atragmx_fnc_restore_atmo_default
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
GVAR(atmosphereModeTBH) = true;
|
|
|
|
GVAR(altitude) = 0;
|
|
|
|
GVAR(temperature) = 15;
|
|
|
|
GVAR(barometricPressure) = 1013.25;
|
2017-10-06 18:05:20 +00:00
|
|
|
GVAR(relativeHumidity) = 0.0;
|
2015-04-17 22:11:53 +00:00
|
|
|
|
|
|
|
[] call FUNC(update_atmo_selection);
|
|
|
|
[] call FUNC(update_atmosphere);
|