-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tscn
27 lines (22 loc) · 858 Bytes
/
main.tscn
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
[gd_scene load_steps=2 format=3 uid="uid://cafwo2icd161t"]
[ext_resource type="Script" path="res://main.gd" id="1_fage4"]
[node name="main" type="Node2D"]
script = ExtResource("1_fage4")
[node name="play" type="Button" parent="."]
offset_left = 725.0
offset_top = 162.0
offset_right = 1555.0
offset_bottom = 501.0
theme_override_font_sizes/font_size = 80
text = "play"
[node name="quit" type="Button" parent="."]
offset_left = 730.0
offset_top = 674.0
offset_right = 1543.0
offset_bottom = 1023.0
theme_override_font_sizes/font_size = 80
text = "quit"
[connection signal="pressed" from="play" to="." method="_on_play_pressed"]
[connection signal="pressed" from="play" to="play" method="_on_pressed"]
[connection signal="pressed" from="quit" to="." method="_on_quit_pressed"]
[connection signal="pressed" from="quit" to="play" method="_on_quit_pressed"]