ACE3/addons/vector/functions/fnc_showP1.sqf

34 lines
848 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-01-15 18:01:27 +00:00
/*
* Author: commy2
* Shows or hides the 1-P text line.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_vector_fnc_showP1
*
* Public: No
*/
2015-01-15 18:01:27 +00:00
disableSerialization;
private _dlgVector = GETUVAR(ACE_dlgVector,displayNull);
2015-01-15 18:01:27 +00:00
if (_this select 0) then {
2016-04-08 18:34:50 +00:00
(_dlgVector displayCtrl 1321) ctrlSetText QPATHTOF(rsc\vector_1.paa);
(_dlgVector displayCtrl 1322) ctrlSetText QPATHTOF(rsc\vector_minus.paa);
(_dlgVector displayCtrl 1323) ctrlSetText QPATHTOF(rsc\vector_p.paa);
2015-01-21 21:52:39 +00:00
(_dlgVector displayCtrl 1324) ctrlSetText "";
2015-01-15 18:01:27 +00:00
} else {
(_dlgVector displayCtrl 1321) ctrlSetText "";
(_dlgVector displayCtrl 1322) ctrlSetText "";
(_dlgVector displayCtrl 1323) ctrlSetText "";
2015-01-21 21:52:39 +00:00
(_dlgVector displayCtrl 1324) ctrlSetText "";
2015-01-15 18:01:27 +00:00
};
[GVAR(illuminate)] call FUNC(illuminate);