blob: 0eed6404f042aabf01ef81f4431c6288e868bffd (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
#include "ui/menudef.h"
{
menuDef
{
name "default_hud"
fullScreen MENU_FALSE
visible MENU_TRUE
rect 0 0 640 480
//CONSOLE
itemDef
{
name "console"
rect 8 8 560 180
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 1
align ITEM_ALIGN_LEFT
textalignx 0
textaligny 18
textscale 0.4
textstyle ITEM_TEXTSTYLE_NORMAL
ownerdraw CG_CONSOLE
}
//TUTORIAL
itemDef
{
name "tutorial"
rect 8 250 640 180
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 0.35
align ITEM_ALIGN_LEFT
textalignx 0
textaligny 18
textscale 0.3
textstyle ITEM_TEXTSTYLE_NORMAL
ownerdraw CG_TUTORIAL
}
//FPS
itemDef
{
name "fps"
rect 572 8 56 22
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 1
align ITEM_ALIGN_RIGHT
textalignx 0
textaligny 18
textscale 0.3
textstyle ITEM_TEXTSTYLE_NORMAL
ownerdraw CG_FPS
}
//TIMER
itemDef
{
name "timer"
rect 572 38 56 22
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 1
align ITEM_ALIGN_RIGHT
textalignx 0
textaligny 18
textscale 0.3
textstyle ITEM_TEXTSTYLE_NORMAL
ownerdraw CG_TIMER
}
//CLOCK
itemDef
{
name "clock"
rect 572 90 56 22
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 1
align ITEM_ALIGN_RIGHT
textalignx 0
textaligny 18
textscale 0.25
textstyle ITEM_TEXTSTYLE_NORMAL
ownerdraw CG_CLOCK
}
//SNAPSHOT
itemDef
{
name "snapshot"
rect 8 196 200 22
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 1
align ITEM_ALIGN_RIGHT
textalignx 0
textaligny 18
textscale 0.4
textstyle ITEM_TEXTSTYLE_NORMAL
ownerdraw CG_SNAPSHOT
}
//LAGOMETER
itemDef
{
name "lagometer"
rect 596 68 32 20
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 1
textscale 0.3
textalignx 1
textaligny 0.5
ownerdraw CG_LAGOMETER
}
//DEMO STATE
itemDef
{
name "demoRecording"
rect 596 120 32 32
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 0 0 1
textscale 0.3
textalignx 1
textaligny 0.5
ownerdraw CG_DEMO_RECORDING
background "ui/assets/neutral/circle.tga"
}
itemDef
{
name "demoPlayback"
rect 596 120 32 32
style WINDOW_STYLE_EMPTY
visible 1
decoration
forecolor 1 1 1 1
textscale 0.3
textalignx 1
textaligny 0.5
ownerdraw CG_DEMO_PLAYBACK
background "ui/assets/forwardarrow.tga"
}
//PLAYER NAME
itemDef
{
name "playername"
rect 200 275 240 25
visible 1
decoration
textScale .5
ownerdraw CG_PLAYER_CROSSHAIRNAMES
}
}
}
|