mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33 lines
779 B
Plaintext
33 lines
779 B
Plaintext
|
#include "script_component.hpp"
|
||
|
#include "..\defines.hpp"
|
||
|
/*
|
||
|
* Author: mharis001
|
||
|
* Initializes the 3DEN attribute.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Attribute controls group <CONTROL>
|
||
|
* 1: Attribute value <ARRAY>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Example:
|
||
|
* [CONTROL, [[], 0]] call ace_arsenal_fnc_attributeLoad
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
params ["_controlsGroup", "_value"];
|
||
|
TRACE_1("Initializing 3DEN attribute",_value);
|
||
|
|
||
|
// Store working attribute value
|
||
|
uiNamespace setVariable [QGVAR(attributeValue), _value];
|
||
|
|
||
|
// Handle selected mode
|
||
|
if (_value select 1 > 0) then {
|
||
|
(_controlsGroup controlsGroupCtrl IDC_ATTRIBUTE_MODE) lbSetCurSel 1;
|
||
|
(_controlsGroup controlsGroupCtrl IDC_ATTRIBUTE_LIST_RIGHT) ctrlSetText SYMBOL_ITEM_REMOVE;
|
||
|
};
|
||
|
|
||
|
[_controlsGroup] call FUNC(attributeAddItems);
|