-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.tscn
25 lines (18 loc) · 830 Bytes
/
Index.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
[gd_scene load_steps=2 format=3 uid="uid://bgu6khtxawvtg"]
[ext_resource type="Script" path="res://UI.gd" id="1_bxjly"]
[node name="Node2D" type="Node2D"]
script = ExtResource("1_bxjly")
[node name="MarginContainer" type="MarginContainer" parent="."]
offset_right = 135.0
offset_bottom = 43.0
rotation = 0.190241
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
layout_mode = 2
[node name="Play" type="Button" parent="MarginContainer/VBoxContainer"]
layout_mode = 2
text = "Play"
[node name="Quit" type="Button" parent="MarginContainer/VBoxContainer"]
layout_mode = 2
text = "Quit"
[connection signal="pressed" from="MarginContainer/VBoxContainer/Play" to="." method="_on_button_pressed"]
[connection signal="pressed" from="MarginContainer/VBoxContainer/Quit" to="." method="_on_button_2_pressed"]