mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
23 lines
622 B
Plaintext
23 lines
622 B
Plaintext
/*
|
|
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:
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/EPOCH_updateLoadingScreen.sqf
|
|
*/
|
|
disableSerialization;
|
|
//[[[cog import generate_private_arrays ]]]
|
|
private ["_display"];
|
|
//[[[end]]]
|
|
_display = uiNameSpace getVariable ["EPOCH_loadingScreen",displayNull];
|
|
if (!isNull _display) then {
|
|
(_display displayCtrl 50) ctrlSetText _this;
|
|
};
|