-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_scene.tscn
More file actions
39 lines (32 loc) · 1.14 KB
/
test_scene.tscn
File metadata and controls
39 lines (32 loc) · 1.14 KB
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
37
38
39
[gd_scene load_steps=2 format=3 uid="uid://2n72vf10cllh"]
[ext_resource type="Script" uid="uid://c171y08jfayqk" path="res://test_scene.gd" id="1_uhqqe"]
[node name="TestScene" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_uhqqe")
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/separation = 126
alignment = 1
[node name="HelloButton" type="Button" parent="VBoxContainer"]
custom_minimum_size = Vector2(0, 120)
layout_mode = 2
text = "Hello"
[node name="SayHelloButton" type="Button" parent="VBoxContainer"]
custom_minimum_size = Vector2(0, 120)
layout_mode = 2
text = "Say Hello"
[node name="Info" type="Label" parent="VBoxContainer"]
custom_minimum_size = Vector2(0, 540)
layout_mode = 2
[connection signal="pressed" from="VBoxContainer/HelloButton" to="." method="_on_hello_button_pressed"]
[connection signal="pressed" from="VBoxContainer/SayHelloButton" to="." method="_on_say_hello_button_pressed"]