ACE3/addons/markers/functions/fnc_onSliderPosChangedAngle.sqf

31 lines
598 B
Plaintext
Raw Normal View History

2015-03-28 01:51:30 +00:00
/*
* Author: commy2
* Angle Slider Pos changed
*
* Arguments:
* 0: Slider (idc 1210) <CONTROL>
* 1: Slider Data (angle: -180..180) <NUMBER>
*
* Return Value:
* Nothing
*
* Example:
* [Slider, 2] call ace_markers_fnc_onSliderPosChangedAngle;
*
* Public: No
*/
2015-01-18 16:17:06 +00:00
#include "script_component.hpp"
2015-03-28 01:51:30 +00:00
private ["_direction"];
2015-03-28 01:51:30 +00:00
PARAMS_2(_ctrl,_data);
_direction = round _data;
if (_direction < 0) then {
2015-01-18 16:17:06 +00:00
_direction = _direction + 360;
};
2015-01-18 16:17:06 +00:00
((ctrlParent _ctrl) displayCtrl 1221) ctrlSetText format [localize "STR_ACE_Markers_MarkerDirection", _direction];
2015-01-18 16:17:06 +00:00
GVAR(currentMarkerAngle) = _data;