2015-01-15 06:18:57 +00:00
|
|
|
// by commy2
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-16 00:48:43 +00:00
|
|
|
private "_dlgVector";
|
2015-01-15 06:18:57 +00:00
|
|
|
|
|
|
|
disableSerialization;
|
|
|
|
_dlgVector = GETUVAR(ACE_dlgVector,displayNull);
|
|
|
|
|
|
|
|
private ["_direction", "_digits"];
|
|
|
|
|
|
|
|
_direction = call FUNC(getDirection);
|
|
|
|
|
|
|
|
_digits = _direction call FUNC(convertToTexturesDegree);
|
|
|
|
|
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);
|