mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
670 B
C++
31 lines
670 B
C++
// by commy2
|
|
|
|
class RscStructuredText;
|
|
|
|
class RscTitles {
|
|
class AGM_Medical_RscHint {
|
|
idd = -1;
|
|
onLoad = "uiNamespace setVariable ['AGM_ctrlHint', (_this select 0) displayCtrl 1];";
|
|
movingEnable = false;
|
|
duration = 10;
|
|
fadeIn = 0.2;
|
|
fadeOut = 0.2;
|
|
name = "AGM_Medical_RscHint";
|
|
|
|
class controls {
|
|
class HintBox: RscStructuredText {
|
|
idc = 1;
|
|
text = "";
|
|
size = "1 / 40 / (getResolution select 5)";
|
|
sizeEx = 1;
|
|
colorText[] = {1, 1, 1, 1};
|
|
colorBackground[] = {0, 0, 0, 0.5};
|
|
x = safeZoneW + safeZoneX - 0.2 * safezoneW;
|
|
y = safeZoneY + 0.2 * safezoneH;
|
|
w = 0.2 * safeZoneW;
|
|
h = 0.35 * SafeZoneH;
|
|
};
|
|
};
|
|
};
|
|
};
|