blob: 8ee96d2770478a2938a099941984a8223f47472f (
plain) (
tree)
|
|
[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"]
|