ACE3/addons/markers/functions/fnc_onLBSelChangedShape.sqf

29 lines
552 B
Plaintext
Raw Normal View History

2015-03-28 01:51:30 +00:00
/*
* Author: commy2
* When the shape list box is changed.
*
* Arguments:
* 0: Shape ListBox (idc 1210) <CONTROL>
* 1: Selected Index <NUMBER>
*
* Return Value:
2015-08-22 12:08:35 +00:00
* None
2015-03-28 01:51:30 +00:00
*
* Example:
* [ColorLB, 5] call ace_markers_fnc_onLBSelChangedShape;
*
* Public: No
*/
2015-01-18 16:17:06 +00:00
#include "script_component.hpp"
2015-08-22 12:08:35 +00:00
params ["_ctrl", "_index"];
2015-08-23 19:25:41 +00:00
TRACE_2("params",_ctrl,_index);
2015-12-10 14:32:31 +00:00
private _data = _ctrl lbValue _index;
2015-03-28 01:51:30 +00:00
GVAR(curSelMarkerShape) = _index;
2016-01-01 02:27:26 +00:00
private _config = (configFile >> "CfgMarkers") select _data;
2015-12-10 14:32:31 +00:00
GVAR(currentMarkerConfigName) = configName _config;