Subversion Repositories AndroidProjects

Rev

Rev 614 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
549 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, 150;
18
		size 480, 500;
19
		align top, left;
748 chris 20
		texture "data/textures/clouds.png";
21
		color 1, 1, 1, 0.9;
22
		//color 0.35, 0.25, 0.35, 0.8;
549 chris 23
	}
24
 
25
	Image "bar1"
26
	{
27
		position 0, 150;
28
		size 480, 12;
29
		align top, center;
30
		texture "data/textures/bar_horiz.png";
31
	}
32
 
33
	Image "bar2"
34
	{
35
		position 0, 650;
36
		size 480, 12;
37
		align top, center;
38
		texture "data/textures/bar_horiz.png";
39
	}
40
 
41
	SegmentButton "Exit"
42
	{
43
		position 240, 380;
44
		size 280, 100;
614 chris 45
		caption "RETRY";
549 chris 46
		align center, center;
47
		texture "data/textures/simplebutton.png";
48
		pushTexture "data/textures/simplebutton_pushed.png";
49
		scale 3;
50
		font "scoring";
51
		color 1, 1, 1, 1;
52
		pushColor 1, 1, 1, 1;
53
		pushOffset 0, 2;
54
		onTouch "restart";
55
 
56
		//clickSound "menu_click";
57
		pushSound "menu_push";
58
	}
59
 
60
	SegmentButton "Exit"
61
	{
62
		position 240, 500;
63
		size 280, 100;
64
		caption "Exit to Menu";
65
		align center, center;
66
		texture "data/textures/simplebutton.png";
67
		pushTexture "data/textures/simplebutton_pushed.png";
68
		scale 3;
69
		font "scoring";
70
		color 1, 1, 1, 1;
71
		pushColor 1, 1, 1, 1;
72
		pushOffset 0, 2;
73
		onTouch "exit_to_menu";
74
 
75
		//clickSound "menu_click";
76
		pushSound "menu_push";
77
	}
78
 
79
}