Subversion Repositories AndroidProjects

Rev

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

Rev Author Line No. Line
732 chris 1
Menu "Tutorial1"
2
{
3
	origin 0, 0;
4
	fadeTime 0;
5
 
733 chris 6
	Image "bg"
7
	{
8
		position 0, 140;
9
		size 480, 400;
10
		align left, top;
11
		color 1, 1, 1, 0.5;
12
 
13
		texture "data/textures/black.png";
14
	}
15
 
735 chris 16
	Image "matching"
17
	{
18
		position 220, 210;
19
		size 240, 120;
20
		align center, center;
21
		texture "data/textures/tutorial2_matching3.png";
22
	}
23
 
733 chris 24
	Label "text1"
25
	{
26
		position 40, 270;
27
		size 400, 40;
28
		align left, top;
29
		textAlign left, top;
30
		color 1, 1, 1, 1;
31
		font "ingame";
32
		scale 1;
33
		lineBreak 1.2;
34
		caption "Match 3 or more same-color blocks in a row\n(horizontal or vertical) to clear them.";
35
	}
36
 
735 chris 37
	Image "matching"
38
	{
39
		position 220, 400;
40
		size 240, 120;
41
		align center, center;
42
		texture "data/textures/tutorial2_matching6.png";
43
	}
44
 
733 chris 45
	Label "text2"
46
	{
47
		position 40, 460;
48
		size 400, 40;
49
		align left, top;
50
		textAlign left, top;
51
		color 1, 1, 1, 1;
52
		font "ingame";
53
		scale 1;
54
		lineBreak 1.2;
55
		caption "Clearing more than 3 blocks at once results\nin a combo, which is rewarded with extra points!";
56
	}
57
 
732 chris 58
	Label "tutorial1"
59
	{
60
		position 240, 70;
61
		size 400, 60;
733 chris 62
		caption "HOW TO PLAY";
732 chris 63
		scale 3.0;
64
		align center, center;
65
		textAlign center, center;
66
		color 1, 1, 1, 1;
67
		shadow false;
68
		font "scoring";
69
	}
70
 
71
	Label "page"
72
	{
73
		position 240, 110;
74
		size 400, 60;
75
		caption "PAGE 1 OF 8";
76
		scale 3.0;
77
		align center, center;
78
		textAlign center, center;
79
		color 1, 1, 1, 1;
80
		shadow false;
81
		font "scoring";
82
	}
83
 
84
	SegmentButton "prev"
85
	{
86
		position 125, 600;
87
		size 245, 100;
88
		caption "PREVIOUS";
89
		scale 3.0;
90
		align center, center;
91
		textAlign center, center;
92
		color 1, 1, 1, 1;
93
		shadow false;
94
		font "scoring";
95
 
96
		texture "data/textures/simplebutton.png";
97
		pushTexture "data/textures/simplebutton_pushed.png";
98
 
99
		pushColor 1, 1, 1, 1;
100
		pushOffset 0, 2;
101
 
102
		onTouch "prev";
103
 
104
		pushSound "menu_push";
105
	}
106
 
107
	SegmentButton "next"
108
	{
109
		position 355, 600;
110
		size 245, 100;
111
		caption "NEXT";
112
		scale 3.0;
113
		align center, center;
114
		textAlign center, center;
115
		color 1, 1, 1, 1;
116
		shadow false;
117
		font "scoring";
118
 
119
		texture "data/textures/simplebutton.png";
120
		pushTexture "data/textures/simplebutton_pushed.png";
121
 
122
		pushColor 1, 1, 1, 1;
123
		pushOffset 0, 2;
124
 
125
		onTouch "next";
126
 
127
		pushSound "menu_push";
128
	}
129
 
130
	SegmentButton "back"
131
	{
132
		position 240, 700;
133
		size 475, 100;
134
		caption "BACK TO MENU";
135
		scale 3.0;
136
		align center, center;
137
		textAlign center, center;
138
		color 1, 1, 1, 1;
139
		shadow false;
140
		font "scoring";
141
 
142
		texture "data/textures/simplebutton.png";
143
		pushTexture "data/textures/simplebutton_pushed.png";
144
 
145
		pushColor 1, 1, 1, 1;
146
		pushOffset 0, 2;
147
 
1011 chris 148
		onTouch "switchState MainMenuState fromTutorial";
732 chris 149
 
150
		pushSound "menu_push";
151
	}
152
}