mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
565 B
Plaintext
21 lines
565 B
Plaintext
// by commy2
|
|
#include "script_component.hpp"
|
|
|
|
private "_dlgVector";
|
|
|
|
disableSerialization;
|
|
_dlgVector = GETUVAR(ACE_dlgVector,displayNull);
|
|
|
|
private ["_direction", "_digits"];
|
|
|
|
_direction = call FUNC(getDirection);
|
|
|
|
_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);
|