-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_2d.tscn
31 lines (24 loc) · 973 Bytes
/
node_2d.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
28
29
30
31
[gd_scene load_steps=2 format=3 uid="uid://lbsv3hl5iixc"]
[ext_resource type="Script" path="res://Node2D.gd" id="1_6ws7h"]
[node name="Node2D" type="Node2D"]
script = ExtResource("1_6ws7h")
[node name="VBoxContainer" type="VBoxContainer" parent="."]
offset_right = 1148.0
offset_bottom = 652.0
theme_override_constants/separation = 20
[node name="Button2" type="Button" parent="VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 30
text = "Save key"
[node name="Button" type="Button" parent="VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 30
text = "Get key"
[node name="Label" type="Label" parent="VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 30
text = "Hello"
horizontal_alignment = 1
vertical_alignment = 1
[connection signal="toggled" from="VBoxContainer/Button2" to="." method="_on_button_2_toggled"]
[connection signal="pressed" from="VBoxContainer/Button" to="." method="_on_button_pressed"]