2015-12-07 16:24:52 +00:00
|
|
|
/*
|
|
|
|
Author: Niklas Wagner - EpochMod.com
|
|
|
|
|
|
|
|
Contributors:
|
|
|
|
|
|
|
|
Description:
|
|
|
|
Update loading screen message
|
|
|
|
|
|
|
|
Licence:
|
|
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
|
|
|
|
Github:
|
2016-06-13 16:54:19 +00:00
|
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/EPOCH_updateLoadingScreen.sqf
|
2015-12-07 16:24:52 +00:00
|
|
|
*/
|
2015-09-14 20:55:36 +00:00
|
|
|
disableSerialization;
|
2016-09-01 00:29:08 +00:00
|
|
|
//[[[cog import generate_private_arrays ]]]
|
2016-04-08 20:21:46 +00:00
|
|
|
private ["_display"];
|
2016-09-01 00:29:08 +00:00
|
|
|
//[[[end]]]
|
2015-09-14 20:55:36 +00:00
|
|
|
_display = uiNameSpace getVariable ["EPOCH_loadingScreen",displayNull];
|
|
|
|
if (!isNull _display) then {
|
|
|
|
(_display displayCtrl 50) ctrlSetText _this;
|
|
|
|
};
|