-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdescription.ext
More file actions
49 lines (43 loc) · 955 Bytes
/
description.ext
File metadata and controls
49 lines (43 loc) · 955 Bytes
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
import RscText;
class RscCytechDisplay
{
idd = 13371337;
fadein = 0; // Required parameters for RscTitles
fadeout = 0;
duration = 1e+011;
onLoad = "_this call ded_fnc_OSDisplayLoad";
class controls
{
class Texture: RscText
{
type = 106; // CT_WEBBROWSER
idc = 1337;
x = 0; // Full screen from corner to corner
y = 0;
w = 1;
h = 1;
url = "file://hudOverlay.html"; // Reference to a file inside our mission
};
};
};
class RscCytechDisplayControl
{
idd = 13371337;
fadein = 0; // Required parameters for RscTitles
fadeout = 0;
duration = 1e+011;
//onLoad = "_this call ded_fnc_OSDisplayLoad";
class controls
{
class Texture: RscText
{
type = 106; // CT_WEBBROWSER
idc = 1337;
x = safeZoneX+0.1;
y = safeZoneY+0.1;
w = safeZoneW-0.2;
h = safeZoneH-0.2;
url = "file://hudOverlay.html"; // Reference to a file inside our mission
};
};
};