ACE3/addons/atragmx/functions/fnc_show_range_card_setup.sqf

29 lines
686 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: Ruthberg
* Shows/Hides the range card setup controls
*
* Arguments:
* visible - <BOOL>
*
* Return Value:
* None
*
* Example:
* false call ace_atragmx_fnc_show_range_card_setup
*
* Public: No
*/
GVAR(showRangeCardSetup) = _this;
{ctrlShow [_x, _this]} forEach [10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007, 10008, 10009];
if (_this) then {
2015-04-16 17:52:20 +00:00
ctrlSetFocus ((uiNamespace getVariable "ATragMX_Display") displayCtrl 10006);
2016-05-03 00:32:44 +00:00
ctrlSetText [10003, Str(Round(GVAR(rangeCardStartRange)))];
ctrlSetText [10004, Str(Round(GVAR(rangeCardEndRange)))];
ctrlSetText [10005, Str(Round(GVAR(rangeCardIncrement)))];
};