blob: ba9458ba5f6844b7779c17f3544ea8fa701d96fe (
plain)
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
|
[gd_scene load_steps=2 format=2]
[ext_resource path="res://Scripts/StartMenu.cs" type="Script" id=1]
[node name="StartMenu" type="MarginContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 8.0
margin_top = 8.0
margin_right = -8.0
margin_bottom = -8.0
script = ExtResource( 1 )
__meta__ = {
"_edit_group_": true
}
[node name="MainContainer" type="CenterContainer" parent="."]
margin_right = 1008.0
margin_bottom = 584.0
[node name="Buttons" type="VBoxContainer" parent="MainContainer"]
margin_left = 421.0
margin_top = 222.0
margin_right = 587.0
margin_bottom = 361.0
[node name="StartButton" type="Button" parent="MainContainer/Buttons"]
margin_right = 166.0
margin_bottom = 41.0
text = "Start Adventure"
[node name="CreditsButton" type="Button" parent="MainContainer/Buttons"]
margin_top = 49.0
margin_right = 166.0
margin_bottom = 90.0
text = "Credits"
[node name="QuitButton" type="Button" parent="MainContainer/Buttons"]
margin_top = 98.0
margin_right = 166.0
margin_bottom = 139.0
text = "Quit"
[connection signal="visibility_changed" from="." to="." method="OnVisibilityChanged"]
[connection signal="pressed" from="MainContainer/Buttons/StartButton" to="." method="OnStartButtonPressed"]
[connection signal="pressed" from="MainContainer/Buttons/CreditsButton" to="." method="OnCreditsButtonPressed"]
[connection signal="pressed" from="MainContainer/Buttons/QuitButton" to="." method="OnQuitButtonPressed"]
|