-
Notifications
You must be signed in to change notification settings - Fork 1
/
Menu.tscn
121 lines (105 loc) · 3.34 KB
/
Menu.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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://default_styleboxtexture.tres" type="StyleBox" id=1]
[ext_resource path="res://DefaultTheme.tres" type="Theme" id=2]
[ext_resource path="res://Menu.gd" type="Script" id=3]
[node name="Menu" type="Node2D"]
script = ExtResource( 3 )
[node name="Holder" type="Label" parent="."]
margin_left = 171.0
margin_top = 84.0
margin_right = 340.0
margin_bottom = 215.0
theme = ExtResource( 2 )
custom_styles/normal = ExtResource( 1 )
text = "MaintBot OS v17.2 - Control Panel"
align = 1
[node name="OkButton" type="Button" parent="Holder"]
margin_left = 9.0
margin_top = 17.0
margin_right = 74.0
margin_bottom = 32.0
focus_neighbour_left = NodePath("../YourReplayButton")
focus_neighbour_top = NodePath("../RestartButton")
text = "Continue"
[node name="YourReplayButton" type="Button" parent="Holder"]
margin_left = 78.0
margin_top = 17.0
margin_right = 160.0
margin_bottom = 32.0
focus_neighbour_top = NodePath("../QuitGameButton")
focus_neighbour_right = NodePath("../OkButton")
text = "Your Replay"
[node name="AuthorsReplayButton" type="Button" parent="Holder"]
margin_left = 78.0
margin_top = 35.0
margin_right = 144.0
margin_bottom = 50.0
focus_neighbour_right = NodePath("../LevelSelectButton")
text = "Author's Replay"
[node name="SaveReplayButton" type="Button" parent="Holder"]
margin_left = 78.0
margin_top = 53.0
margin_right = 160.0
margin_bottom = 68.0
focus_neighbour_right = NodePath("../InsightButton")
text = "Save Replay"
[node name="CopyReplayButton" type="Button" parent="Holder"]
margin_left = 78.0
margin_top = 71.0
margin_right = 160.0
margin_bottom = 86.0
focus_neighbour_right = NodePath("../ControlsButton")
text = "Copy Replay"
[node name="PasteReplayButton" type="Button" parent="Holder"]
margin_left = 78.0
margin_top = 89.0
margin_right = 160.0
margin_bottom = 104.0
focus_neighbour_right = NodePath("../SettingsButton")
text = "Paste Replay"
[node name="LevelSelectButton" type="Button" parent="Holder"]
margin_left = 9.0
margin_top = 35.0
margin_right = 74.0
margin_bottom = 50.0
focus_neighbour_left = NodePath("../AuthorsReplayButton")
text = "Level Select"
[node name="InsightButton" type="Button" parent="Holder"]
margin_left = 9.0
margin_top = 53.0
margin_right = 74.0
margin_bottom = 68.0
focus_neighbour_left = NodePath("../SaveReplayButton")
text = "Gain Insight"
[node name="ControlsButton" type="Button" parent="Holder"]
margin_left = 9.0
margin_top = 71.0
margin_right = 74.0
margin_bottom = 86.0
focus_neighbour_left = NodePath("../CopyReplayButton")
text = "Controls"
[node name="SettingsButton" type="Button" parent="Holder"]
margin_left = 9.0
margin_top = 89.0
margin_right = 74.0
margin_bottom = 104.0
focus_neighbour_left = NodePath("../PasteReplayButton")
text = "Settings"
[node name="RestartButton" type="Button" parent="Holder"]
margin_left = 9.0
margin_top = 107.0
margin_right = 74.0
margin_bottom = 122.0
focus_neighbour_left = NodePath("../QuitGameButton")
focus_neighbour_right = NodePath("../QuitGameButton")
focus_neighbour_bottom = NodePath("../OkButton")
text = "Restart"
[node name="QuitGameButton" type="Button" parent="Holder"]
margin_left = 79.0
margin_top = 107.0
margin_right = 160.0
margin_bottom = 122.0
focus_neighbour_right = NodePath("../RestartButton")
focus_neighbour_bottom = NodePath("../YourReplayButton")
text = "Quit Game"
[node name="Pointer" type="Sprite" parent="Holder"]