mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
3a1dba4486
Using a shared `radius` attribute for all of these displays so a generalized method of initializing and retrieving the value associated that was implemented.
34 lines
707 B
Plaintext
34 lines
707 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Initalises the ace_cargo attribute of the zeus vehicle attributes display
|
|
* (the display shown on double click)
|
|
*
|
|
* Arguments:
|
|
* 0: ace_cargo controls group <CONTROL>
|
|
*
|
|
* Return Value:
|
|
* None <NIL>
|
|
*
|
|
* Example:
|
|
* onSetFocus = "_this call ace_zeus_fnc_ui_vehCargo"
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_control"];
|
|
TRACE_1("params",_control);
|
|
|
|
private _veh = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull);
|
|
TRACE_1("",_veh);
|
|
|
|
private _loaded = _veh getVariable [QEGVAR(cargo,loaded), []];
|
|
TRACE_1("",_loaded);
|
|
|
|
_control ctrlRemoveAllEventHandlers "setFocus";
|
|
|
|
{
|
|
(_control controlsGroupCtrl 80086) lbAdd (str _x);
|
|
} forEach _loaded;
|