Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
638 chris 1
Menu "TitleMenu"
2
{
3
	origin 0, 0;
4
	fadeTime 0.2;
5
 
6
	Image "bg"
7
	{
8
		position 0, 0;
9
		size 480, 800;
10
		align top, left;
11
		texture "data/textures/black.png";
12
		color 1, 1, 1, 0.7;
13
	}
14
 
15
	Image "dlg"
16
	{
17
		position 0, 100;
18
		size 480, 500;
19
		align top, left;
20
		texture "data/textures/white.png";
21
		//color 1, 1, 1, 0.7;
22
		color 0.35, 0.25, 0.35, 0.8;
23
	}
24
 
25
	Image "bar1"
26
	{
27
		position 0, 100;
28
		size 480, 12;
29
		align top, center;
30
		texture "data/textures/bar_horiz.png";
31
	}
32
 
33
	Image "bar2"
34
	{
35
		position 0, 600;
36
		size 480, 12;
37
		align top, center;
38
		texture "data/textures/bar_horiz.png";
39
	}
40
 
41
	Label "resultTitle"
42
	{
43
		position 240, 250;
44
		size 100, 20;
45
		align center, center;
46
		font "scoring";
47
		caption "RESULT SCORE:";
48
		color 1, 1, 1, 1;
49
		scale 3;
50
	}
51
 
52
	Label "result"
53
	{
54
		position 240, 280;
55
		size 100, 20;
56
		align center, center;
57
		font "scoring";
58
		color 0.7, 1, 0.3, 1;
59
		caption "";
60
		scale 3;
61
	}
62
 
63
 
64
	SegmentButton "Exit"
65
	{
66
		position 240, 420;
67
		size 280, 100;
68
		caption "RETRY";
69
		align center, center;
70
		texture "data/textures/simplebutton.png";
71
		pushTexture "data/textures/simplebutton_pushed.png";
72
		scale 3;
73
		font "scoring";
74
		color 1, 1, 1, 1;
75
		pushColor 1, 1, 1, 1;
76
		pushOffset 0, 2;
77
		onTouch "restart";
78
 
79
		//clickSound "menu_click";
80
		pushSound "menu_push";
81
	}
82
 
83
	SegmentButton "Exit"
84
	{
85
		position 240, 540;
86
		size 280, 100;
87
		caption "Exit to Menu";
88
		align center, center;
89
		texture "data/textures/simplebutton.png";
90
		pushTexture "data/textures/simplebutton_pushed.png";
91
		scale 3;
92
		font "scoring";
93
		color 1, 1, 1, 1;
94
		pushColor 1, 1, 1, 1;
95
		pushOffset 0, 2;
96
		onTouch "exit_to_menu";
97
 
98
		//clickSound "menu_click";
99
		pushSound "menu_push";
100
	}
101
}