ACE3/addons/vector/functions/fnc_showAzimuth.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

32 lines
666 B
Plaintext

/*
* Author: commy2
*
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_vector_fnc_showAzimuth
*
* Public: No
*/
#include "script_component.hpp"
disableSerialization;
private _dlgVector = GETUVAR(ACE_dlgVector,displayNull);
private _direction = call FUNC(getDirection);
private _digits = _direction call FUNC(convertToTexturesDegree);
(_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);
[GVAR(illuminate)] call FUNC(illuminate);