forked from FearTheVenator/GameJam2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Title_screen.tscn
133 lines (116 loc) · 3.91 KB
/
Title_screen.tscn
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
[gd_scene load_steps=9 format=2]
[ext_resource path="res://Scripts/Title_screen.gd" type="Script" id=1]
[ext_resource path="res://fonts/Pixelig Cursief.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=1]
size = 80
outline_size = 6
outline_color = Color( 0.0862745, 0.121569, 0.505882, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=2]
size = 40
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=3]
size = 40
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=4]
size = 40
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=5]
size = 40
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=6]
size = 40
font_data = ExtResource( 2 )
[node name="Title" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="ColorRect" type="ColorRect" parent="."]
margin_left = -1.36035
margin_right = 1280.0
margin_bottom = 720.0
color = Color( 0.207843, 0.286275, 0.490196, 1 )
[node name="Label" type="Label" parent="ColorRect"]
margin_left = 244.692
margin_top = 123.603
margin_right = 828.692
margin_bottom = 203.603
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
text = "ARMOR of Oof"
[node name="Start_button" type="Button" parent="ColorRect"]
margin_left = 239.439
margin_top = 334.106
margin_right = 351.439
margin_bottom = 380.106
focus_mode = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0.843137, 0.352941, 0.352941, 1 )
custom_colors/font_color_pressed = Color( 0.52549, 0.52549, 0.52549, 1 )
enabled_focus_mode = 0
text = "PLAY"
flat = true
[node name="Credits_button" type="Button" parent="ColorRect"]
margin_left = 463.412
margin_top = 333.999
margin_right = 639.412
margin_bottom = 379.999
focus_mode = 0
custom_fonts/font = SubResource( 3 )
custom_colors/font_color = Color( 0.980392, 0.968627, 0.968627, 1 )
custom_colors/font_color_hover = Color( 0.752941, 0.313726, 0.313726, 1 )
custom_colors/font_color_pressed = Color( 0.537255, 0.537255, 0.537255, 1 )
enabled_focus_mode = 0
text = "CREDITS"
flat = true
[node name="Quit_button" type="Button" parent="ColorRect"]
margin_left = 738.999
margin_top = 338.999
margin_right = 838.999
margin_bottom = 384.999
focus_mode = 0
custom_fonts/font = SubResource( 4 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0.8, 0.372549, 0.372549, 1 )
custom_colors/font_color_pressed = Color( 0.364706, 0.364706, 0.364706, 1 )
enabled_focus_mode = 0
text = "QUIT"
flat = true
[node name="credits_rim" type="ColorRect" parent="ColorRect"]
visible = false
margin_left = 67.4697
margin_top = 245.36
margin_right = 941.504
margin_bottom = 601.36
color = Color( 0.176471, 0.176471, 0.176471, 1 )
[node name="credits_color" type="ColorRect" parent="ColorRect/credits_rim"]
margin_left = 20.0
margin_top = 20.0
margin_right = 850.0
margin_bottom = 330.0
color = Color( 0.239216, 0.270588, 0.305882, 1 )
[node name="Label" type="Label" parent="ColorRect/credits_rim/credits_color"]
margin_left = 78.5908
margin_top = 95.1758
margin_right = 734.591
margin_bottom = 178.176
custom_fonts/font = SubResource( 5 )
text = "MADE BY
ZAC HUBER and HUNTER RUEL"
align = 1
valign = 1
[node name="close_credits" type="Button" parent="ColorRect/credits_rim"]
margin_left = 729.159
margin_top = 14.9641
margin_right = 861.159
margin_bottom = 60.9641
focus_mode = 0
custom_fonts/font = SubResource( 6 )
enabled_focus_mode = 0
text = "CLOSE"
flat = true
[connection signal="pressed" from="ColorRect/Start_button" to="." method="_on_Start_button_pressed"]
[connection signal="pressed" from="ColorRect/Credits_button" to="." method="_on_Credits_button_pressed"]
[connection signal="pressed" from="ColorRect/Quit_button" to="." method="_on_Quit_button_pressed"]
[connection signal="pressed" from="ColorRect/credits_rim/close_credits" to="." method="_on_close_credits_pressed"]