-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTitle.tscn
More file actions
105 lines (90 loc) · 3.18 KB
/
Title.tscn
File metadata and controls
105 lines (90 loc) · 3.18 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
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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Title.gd" type="Script" id=1]
[ext_resource path="res://fonts/xolonium/xolonium.tres" type="DynamicFont" id=2]
[ext_resource path="res://sprites/controller.png" type="Texture" id=3]
[node name="Title" type="Node"]
script = ExtResource( 1 )
[node name="CenterContainer" type="CenterContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_lock_": true
}
[node name="VSplitContainer" type="VSplitContainer" parent="CenterContainer"]
margin_left = 758.0
margin_top = 391.0
margin_right = 842.0
margin_bottom = 509.0
[node name="Title" type="Label" parent="CenterContainer/VSplitContainer"]
margin_right = 84.0
margin_bottom = 20.0
custom_fonts/font = ExtResource( 2 )
text = "Void Dogs"
align = 1
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer/VSplitContainer"]
margin_top = 32.0
margin_right = 84.0
margin_bottom = 118.0
[node name="Start" type="Button" parent="CenterContainer/VSplitContainer/VBoxContainer"]
margin_right = 84.0
margin_bottom = 26.0
focus_neighbour_top = NodePath("../Exit")
focus_neighbour_bottom = NodePath("../Options")
focus_next = NodePath("../Options")
focus_previous = NodePath("../Exit")
custom_fonts/font = ExtResource( 2 )
text = "Start"
[node name="Options" type="Button" parent="CenterContainer/VSplitContainer/VBoxContainer"]
margin_top = 30.0
margin_right = 84.0
margin_bottom = 56.0
focus_neighbour_top = NodePath("../Start")
focus_neighbour_bottom = NodePath("../Exit")
focus_next = NodePath("../Exit")
focus_previous = NodePath("../Start")
text = "Options"
[node name="Exit" type="Button" parent="CenterContainer/VSplitContainer/VBoxContainer"]
margin_top = 60.0
margin_right = 84.0
margin_bottom = 86.0
focus_neighbour_top = NodePath("../Options")
focus_neighbour_bottom = NodePath("../Start")
focus_next = NodePath("../Start")
focus_previous = NodePath("../Options")
custom_fonts/font = ExtResource( 2 )
text = "Exit"
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 232.158, 221.718 )
texture = ExtResource( 3 )
[node name="Label" type="Label" parent="."]
margin_left = 313.8
margin_top = 56.0457
margin_right = 385.8
margin_bottom = 76.0457
custom_fonts/font = ExtResource( 2 )
text = "RT - Fire"
[node name="Label4" type="Label" parent="."]
margin_left = 119.175
margin_top = 366.416
margin_right = 335.175
margin_bottom = 409.416
custom_fonts/font = ExtResource( 2 )
text = "1. Defeat Enough Enemy Ships
2. Survive"
[node name="Label2" type="Label" parent="."]
margin_left = 66.0179
margin_top = 42.3277
margin_right = 175.018
margin_bottom = 62.3277
custom_fonts/font = ExtResource( 2 )
text = "LT - Evade"
[node name="Label3" type="Label" parent="."]
margin_left = 47.7343
margin_top = 72.3358
margin_right = 195.734
margin_bottom = 92.3358
custom_fonts/font = ExtResource( 2 )
text = "LB - Toggle Radar"
[connection signal="pressed" from="CenterContainer/VSplitContainer/VBoxContainer/Start" to="." method="_on_Start_pressed"]
[connection signal="pressed" from="CenterContainer/VSplitContainer/VBoxContainer/Options" to="." method="_on_Options_pressed"]
[connection signal="pressed" from="CenterContainer/VSplitContainer/VBoxContainer/Exit" to="." method="_on_Exit_pressed"]