blob: 45c62d6b465f935b54e02f707d46b6b7b0b11c99 (
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
|
#include "ui/menudef.h"
//(c)yaltsedge
{
#define W 480
#define H 480
menuDef
{
name "Connect"
rect 0 0 W H
style WINDOW_STYLE_FILLED
background "ui/assets/warp_splash_m.jpg"
fullScreen MENU_TRUE
aspectBias ASPECT_NONE
itemDef
{
name "aurora_add"
style WINDOW_STYLE_SHADER
rect 0 13 640 442
visible 1
background "ui/menu_main_aurora_base_stars"
decoration
}
itemDef
{
name "aurora"
style WINDOW_STYLE_SHADER
rect 0 12 640 442
visible 1
background "ui/menu_main_aurora_base"
decoration
}
itemDef
{
name "dist"
style WINDOW_STYLE_SHADER
rect 0 13 640 440
visible 1
background "gfx/edge/basi_invisble_overlay"
decoration
}
itemDef
{
name window
rect 70 0 500 500
style WINDOW_STYLE_GRADIENT
backcolor 0.0 1.35 2.55 0
visible 1
decoration
}
itemDef
{
name "loading"
style WINDOW_STYLE_SHADER
rect 370 162 300 400
visible 1
background "scripts/e6"
decoration
}
}
}
|