2017-06-08 13:31:51 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_vector_fnc_showAzimuth
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2015-01-15 06:18:57 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
disableSerialization;
|
2016-09-04 14:44:22 +00:00
|
|
|
private _dlgVector = GETUVAR(ACE_dlgVector,displayNull);
|
2015-01-15 06:18:57 +00:00
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _direction = call FUNC(getDirection);
|
2015-01-15 06:18:57 +00:00
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _digits = _direction call FUNC(convertToTexturesDegree);
|
2015-01-15 06:18:57 +00:00
|
|
|
|
2015-01-16 00:48:43 +00:00
|
|
|
(_dlgVector displayCtrl 1315) ctrlSetText (_digits select 0);
|
|
|
|
(_dlgVector displayCtrl 1316) ctrlSetText (_digits select 1);
|
|
|
|
(_dlgVector displayCtrl 1317) ctrlSetText (_digits select 2);
|
|
|
|
(_dlgVector displayCtrl 1318) ctrlSetText (_digits select 3);
|
2015-04-12 11:56:01 +00:00
|
|
|
|
|
|
|
[GVAR(illuminate)] call FUNC(illuminate);
|