-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathRscTitles.hpp
51 lines (51 loc) · 1.25 KB
/
RscTitles.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class RscText;
class RscPicture;
class RscTitles {
class AGM_Altimeter {
idd = 9935;
enableSimulation = 1;
movingEnable = 0;
fadeIn=0;
fadeOut=1;
duration = 10e10;
onLoad = "uiNamespace setVariable ['AGM_Altimeter', _this select 0];";
class controls {
class AltimeterImage: RscPicture {
idc = 1200;
text = "AGM_Parachute\UI\watch_altimeter.paa";
x = 0.118437 * safezoneW + safezoneX;
y = 0.621 * safezoneH + safezoneY;
w = 0.20625 * safezoneW;
h = 0.341 * safezoneH;
};
class HeightText: RscText {
idc = 1100;
text = "----";
x = 0.200937 * safezoneW + safezoneX;
y = 0.764 * safezoneH + safezoneY;
w = 0.04125 * safezoneW;
h = 0.033 * safezoneH;
colorBackground[] = {0,0,0,0};
colorText[] = {0,0,0,1};
};
class DecendRate: RscText {
idc = 1000;
text = "--";
x = 0.21125 * safezoneW + safezoneX;
y = 0.742 * safezoneH + safezoneY;
w = 0.020625 * safezoneW;
h = 0.022 * safezoneH;
colorText[] = {0,0,0,1};
};
class TimeText: RscText {
idc = 1001;
text = "00:00";
x = 0.206094 * safezoneW + safezoneX;
y = 0.819 * safezoneH + safezoneY;
w = 0.0309375 * safezoneW;
h = 0.022 * safezoneH;
colorText[] = {0,0,0,1};
};
};
};
};