-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathequipment_list.tscn
32 lines (25 loc) · 909 Bytes
/
equipment_list.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
32
[gd_scene load_steps=2 format=3 uid="uid://txypwn4chdvx"]
[ext_resource type="Script" path="res://equipment_list.gd" id="1"]
[node name="equipment_list" type="VBoxContainer"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1")
[node name="HBoxContainer" type="HBoxContainer" parent="."]
layout_mode = 2
[node name="Label" type="Label" parent="HBoxContainer"]
layout_mode = 2
text = "Search:"
[node name="search" type="LineEdit" parent="HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="Tree" type="Tree" parent="."]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
allow_reselect = true
hide_root = true
[connection signal="text_changed" from="HBoxContainer/search" to="." method="_on_search_text_changed"]
[connection signal="cell_selected" from="Tree" to="." method="_on_Tree_cell_selected"]