aboutsummaryrefslogtreecommitdiffstats
path: root/godot/scenes/Menu.tscn
blob: 8ee96d2770478a2938a099941984a8223f47472f (plain) (blame)
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
[gd_scene load_steps=3 format=2]

[ext_resource path="res://assets/theme.tres" type="Theme" id=1]
[ext_resource path="res://scenes/Menu.gd" type="Script" id=2]

[node name="Menu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 2 )

[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_right = 0.25
anchor_bottom = 1.0
margin_left = 40.0
margin_top = 789.0
margin_bottom = -40.0
theme = ExtResource( 1 )
alignment = 2

[node name="StartButton" type="Button" parent="VBoxContainer"]
margin_top = 85.0
margin_right = 440.0
margin_bottom = 166.0
focus_neighbour_top = NodePath("../QuitButton")
text = "Start"

[node name="LevelButton" type="Button" parent="VBoxContainer"]
visible = false
margin_top = 85.0
margin_right = 440.0
margin_bottom = 166.0
text = "Levels"

[node name="QuitButton" type="Button" parent="VBoxContainer"]
margin_top = 170.0
margin_right = 440.0
margin_bottom = 251.0
focus_neighbour_bottom = NodePath("../StartButton")
text = "Quit"

[node name="Label" type="Label" parent="."]
margin_left = 584.0
margin_top = 28.0
margin_right = 1304.0
margin_bottom = 156.0
theme = ExtResource( 1 )
text = "Golf with your Dice"
align = 1
valign = 1

[node name="Credits" type="VBoxContainer" parent="."]
anchor_left = 0.8
anchor_top = 0.6
anchor_right = 1.0
anchor_bottom = 7.0

[node name="Label" type="Label" parent="Credits"]
margin_right = 384.0
margin_bottom = 51.0
theme = ExtResource( 1 )
text = "CREDITS"

[node name="RichTextLabel" type="RichTextLabel" parent="Credits"]
margin_top = 55.0
margin_right = 384.0
margin_bottom = 370.0
theme = ExtResource( 1 )
text = "PROGRAMMING
[Celeste]
[Ice]
[Perivesta]


ART
[Scarabeaver]


MUSIC FROM FREESOUND:ORG:

Main Menu:
\"Relaxing Music\" by Migfus20
https://freesound.org/s/586538/

In Game:
\"Background Music\" by Migfus20
https://freesound.org/s/586838/

"
fit_content_height = true

[connection signal="pressed" from="VBoxContainer/StartButton" to="." method="_on_StartButton_pressed"]
[connection signal="pressed" from="VBoxContainer/QuitButton" to="." method="_on_QuitButton_pressed"]