forked from Zanzigzan/ChaosHacks-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
men8B.tmp
36 lines (28 loc) · 1.17 KB
/
men8B.tmp
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
[gd_scene load_steps=3 format=3 uid="uid://06dijardu0nf"]
[ext_resource type="Script" path="res://menu.gd" id="1_45moq"]
[ext_resource type="Texture2D" uid="uid://cewjcjnmtbp2u" path="res://Resources/Background/GoogleMapsBG.png" id="2_b4660"]
[node name="Menu" type="Node2D"]
script = ExtResource("1_45moq")
[node name="ParallaxBackground" type="ParallaxBackground" parent="."]
[node name="ParallaxLayer" type="ParallaxLayer" parent="ParallaxBackground"]
motion_mirroring = Vector2(0, 960)
[node name="Sprite2D" type="Sprite2D" parent="ParallaxBackground/ParallaxLayer"]
scale = Vector2(1.5, 1.5)
texture = ExtResource("2_b4660")
centered = false
[node name="PlayButton" type="Button" parent="."]
offset_left = 130.0
offset_top = 535.0
offset_right = 270.0
offset_bottom = 885.0
tooltip_text = "Start the game!"
text = "PLAY"
[node name="QuitButton" type="Button" parent="."]
offset_left = 448.0
offset_top = 530.0
offset_right = 588.0
offset_bottom = 880.0
tooltip_text = "Quit the game to the desktop"
text = "QUIT"
[connection signal="pressed" from="PlayButton" to="." method="_on_play_button_pressed"]
[connection signal="pressed" from="QuitButton" to="." method="_on_quit_button_pressed"]