mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
535 B
Plaintext
29 lines
535 B
Plaintext
/*
|
|
* Author: commy2
|
|
* When the shape list box is changed.
|
|
*
|
|
* Arguments:
|
|
* 0: Shape ListBox (idc 1210) <CONTROL>
|
|
* 1: Selected Index <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [ColorLB, 5] call ace_markers_fnc_onLBSelChangedShape;
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_data", "_config"];
|
|
|
|
PARAMS_2(_ctrl,_index);
|
|
_data = _ctrl lbValue _index;
|
|
|
|
GVAR(curSelMarkerShape) = _index;
|
|
|
|
_config = (configfile >> "CfgMarkers") select _data;
|
|
|
|
GVAR(currentMarkerConfigName) = (configName _config);
|