2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2017-06-08 13:31:51 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Number <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [5] call ace_vector_fnc_adjustBrigthness
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2015-01-21 21:52:39 +00:00
|
|
|
disableSerialization;
|
2016-09-04 14:44:22 +00:00
|
|
|
private _dlgVector = GETUVAR(ACE_dlgVector,displayNull);
|
2015-01-21 21:52:39 +00:00
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _color = [[1,0,0,0.5], [1,0,0,1]] select (_this select 0);
|
2015-01-21 21:52:39 +00:00
|
|
|
|
2019-05-27 15:46:07 +00:00
|
|
|
(_dlgVector displayCtrl IDC_CENTER) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_CROSSHAIR) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_0) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_1) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_2) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_3) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_4) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_5) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_6) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_7) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_8) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_9) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_E1) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_E2) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_E3) ctrlSetTextColor _color;
|
|
|
|
(_dlgVector displayCtrl IDC_DIGIT_E4) ctrlSetTextColor _color;
|
2015-04-12 11:56:01 +00:00
|
|
|
|
|
|
|
GVAR(illuminate) = _this select 0;
|
|
|
|
|
|
|
|
_this call FUNC(illuminate);
|