ACE3/addons/vector/functions/fnc_showRelativeDistance.sqf

30 lines
667 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: commy2
*
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_vector_fnc_showRelativeDistance
*
* Public: No
*/
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);