-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTitleScreen.tscn
More file actions
76 lines (65 loc) · 2.38 KB
/
TitleScreen.tscn
File metadata and controls
76 lines (65 loc) · 2.38 KB
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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://TitleScreen.gd" type="Script" id=1]
[ext_resource path="res://fonts/Title.tres" type="DynamicFont" id=2]
[ext_resource path="res://fonts/FORCED SQUARE.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://fonts/TitleOption.tres" type="DynamicFont" id=4]
[sub_resource type="DynamicFont" id=1]
size = 50
font_data = ExtResource( 3 )
[node name="TitleScreen" type="MarginContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
custom_constants/margin_top = 80
custom_constants/margin_left = 120
script = ExtResource( 1 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_left = 120.0
margin_top = 80.0
margin_right = 1024.0
margin_bottom = 600.0
custom_constants/separation = 60
[node name="Title" type="Label" parent="VBoxContainer"]
margin_right = 904.0
margin_bottom = 63.0
custom_fonts/font = ExtResource( 2 )
text = "Some Game"
[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer"]
margin_top = 123.0
margin_right = 904.0
margin_bottom = 373.0
custom_constants/margin_left = 60
[node name="Options" type="VBoxContainer" parent="VBoxContainer/MarginContainer"]
margin_left = 60.0
margin_right = 904.0
margin_bottom = 250.0
custom_constants/separation = 30
[node name="Host" type="Label" parent="VBoxContainer/MarginContainer/Options"]
margin_right = 844.0
margin_bottom = 40.0
mouse_filter = 0
custom_fonts/font = SubResource( 1 )
text = "Host"
[node name="Join" type="Label" parent="VBoxContainer/MarginContainer/Options"]
margin_top = 70.0
margin_right = 844.0
margin_bottom = 110.0
mouse_filter = 0
custom_fonts/font = ExtResource( 4 )
text = "Join"
[node name="Options" type="Label" parent="VBoxContainer/MarginContainer/Options"]
margin_top = 140.0
margin_right = 844.0
margin_bottom = 180.0
mouse_filter = 0
custom_fonts/font = ExtResource( 4 )
text = "Options"
[node name="Quit" type="Label" parent="VBoxContainer/MarginContainer/Options"]
margin_top = 210.0
margin_right = 844.0
margin_bottom = 250.0
mouse_filter = 0
custom_fonts/font = ExtResource( 4 )
text = "Quit"
[connection signal="gui_input" from="VBoxContainer/MarginContainer/Options/Host" to="." method="_on_Host_gui_input"]
[connection signal="gui_input" from="VBoxContainer/MarginContainer/Options/Join" to="." method="_on_Join_gui_input"]
[connection signal="gui_input" from="VBoxContainer/MarginContainer/Options/Quit" to="." method="_on_Quit_gui_input"]