ACE3/addons/vector/functions/fnc_showRelativeDistance.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

31 lines
668 B
Plaintext

/*
* Author: commy2
*
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_vector_fnc_showRelativeDistance
*
* Public: No
*/
#include "script_component.hpp"
disableSerialization;
private _dlgVector = GETUVAR(ACE_dlgVector,displayNull);
private _distance = call FUNC(getRelativeDistance);
// relative slope distance
private _digits = [_distance] call FUNC(convertToTexturesDistance);
(_dlgVector displayCtrl 1311) ctrlSetText (_digits select 0);
(_dlgVector displayCtrl 1312) ctrlSetText (_digits select 1);
(_dlgVector displayCtrl 1313) ctrlSetText (_digits select 2);
(_dlgVector displayCtrl 1314) ctrlSetText (_digits select 3);