ACE3/addons/safemode/functions/fnc_setSafeModeVisual.sqf

35 lines
823 B
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
2015-08-08 00:26:09 +00:00
/*
* Author: commy2
* Shows firemode indicator, representing safety lock.
2015-08-08 00:26:09 +00:00
*
* Arguments:
* 0: Show firemode <BOOL>
*
* Return Value:
* None
2015-08-08 00:26:09 +00:00
*
* Example:
* true call ace_safemode_fnc_setSafeModeVisual
2015-08-08 00:26:09 +00:00
*
* Public: No
*/
2015-08-08 00:26:09 +00:00
params ["_show"];
disableSerialization;
2015-01-17 20:32:34 +00:00
private _control = (uiNamespace getVariable ["ACE_dlgSoldier", displayNull]) displayCtrl 187;
if (isNull _control) exitWith {};
if (_show) then {
private _config = configFile >> "RscInGameUI" >> "RscUnitInfoSoldier" >> "WeaponInfoControlsGroupLeft" >> "controls" >> "CA_ModeTexture";
2015-05-15 13:41:41 +00:00
_control ctrlSetPosition [getNumber (_config >> "x"), getNumber (_config >> "y"), getNumber (_config >> "w"), getNumber (_config >> "h")];
} else {
2015-05-15 13:41:41 +00:00
_control ctrlSetPosition [0, 0, 0, 0];
};
_control ctrlCommit 0;