-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tscn
More file actions
29 lines (22 loc) · 748 Bytes
/
main.tscn
File metadata and controls
29 lines (22 loc) · 748 Bytes
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
[gd_scene load_steps=3 format=3 uid="uid://blnmseukwk8g4"]
[ext_resource type="Script" path="res://main.gd" id="1_8tdqc"]
[sub_resource type="GDScript" id="GDScript_ryapn"]
script/source = "extends Button
"
[node name="Main" type="Node2D"]
script = ExtResource("1_8tdqc")
[node name="Play" type="Button" parent="."]
offset_left = 465.0
offset_top = 228.0
offset_right = 708.0
offset_bottom = 358.0
text = "Play"
[node name="Quit" type="Button" parent="."]
offset_left = 449.0
offset_top = 486.0
offset_right = 737.0
offset_bottom = 575.0
text = "Quit"
script = SubResource("GDScript_ryapn")
[connection signal="pressed" from="Play" to="." method="_on_play_pressed"]
[connection signal="pressed" from="Quit" to="." method="_on_quit_pressed"]