blob: 57dc60887269bc6b623917fb1b478d448f0dae09 (
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
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=3 format=2]
[ext_resource path="res://menu/Menu.gd" type="Script" id=1]
[ext_resource path="res://assets/images/frivorun-logo.png" type="Texture" id=2]
[node name="Menu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="MarginContainer" type="MarginContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="CenterContainer" type="CenterContainer" parent="MarginContainer"]
margin_right = 1280.0
margin_bottom = 720.0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/CenterContainer"]
margin_left = 408.0
margin_top = 223.0
margin_right = 871.0
margin_bottom = 497.0
[node name="Logo" type="TextureRect" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_right = 463.0
margin_bottom = 158.0
texture = ExtResource( 2 )
[node name="Play" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 162.0
margin_right = 463.0
margin_bottom = 182.0
text = "Play"
[node name="Credits" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 186.0
margin_right = 463.0
margin_bottom = 206.0
text = "Credits"
[node name="Quit" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 210.0
margin_right = 463.0
margin_bottom = 230.0
text = "Quit"
[node name="HSeparator" type="HSeparator" parent="MarginContainer/CenterContainer/VBoxContainer"]
modulate = Color( 1, 1, 1, 0 )
margin_top = 234.0
margin_right = 463.0
margin_bottom = 238.0
[node name="About" type="Label" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 242.0
margin_right = 463.0
margin_bottom = 256.0
text = "Made for the bits & Bytes Unofficial Game Jam August 2022."
align = 1
[node name="Copyright" type="Label" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 260.0
margin_right = 463.0
margin_bottom = 274.0
text = "© Copyright 2022 Andrew Lee. Powered by the Godot Engine."
align = 1
[node name="CreditsDialog" type="WindowDialog" parent="."]
margin_left = 382.0
margin_top = 186.0
margin_right = 943.0
margin_bottom = 528.0
[node name="MarginContainer" type="MarginContainer" parent="CreditsDialog"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 20.0
margin_top = 20.0
margin_right = -20.0
margin_bottom = -20.0
[node name="VBoxContainer" type="VBoxContainer" parent="CreditsDialog/MarginContainer"]
margin_right = 521.0
margin_bottom = 302.0
[node name="Label" type="Label" parent="CreditsDialog/MarginContainer/VBoxContainer"]
margin_right = 521.0
margin_bottom = 14.0
text = "About FrivoRun"
align = 1
[node name="Label2" type="Label" parent="CreditsDialog/MarginContainer/VBoxContainer"]
margin_top = 18.0
margin_right = 521.0
margin_bottom = 32.0
text = "Created by Andrew Lee"
align = 1
[node name="Label3" type="Label" parent="CreditsDialog/MarginContainer/VBoxContainer"]
margin_top = 36.0
margin_right = 521.0
margin_bottom = 50.0
text = "Made for the bits & Bytes Game Jam of August 2022"
[node name="Label4" type="Label" parent="CreditsDialog/MarginContainer/VBoxContainer"]
margin_top = 54.0
margin_right = 521.0
margin_bottom = 68.0
text = "Powered by the Godot Engine"
[node name="Label5" type="Label" parent="CreditsDialog/MarginContainer/VBoxContainer"]
margin_top = 72.0
margin_right = 521.0
margin_bottom = 120.0
text = "Music used for this game:
Digital Lemonade by Kevin Macleod
Happy Bee by Kevin Macleod"
[connection signal="button_up" from="MarginContainer/CenterContainer/VBoxContainer/Play" to="." method="_on_Play_button_up"]
[connection signal="button_up" from="MarginContainer/CenterContainer/VBoxContainer/Credits" to="." method="_on_Credits_button_up"]
[connection signal="button_up" from="MarginContainer/CenterContainer/VBoxContainer/Quit" to="." method="_on_Quit_button_up"]
|