-
Notifications
You must be signed in to change notification settings - Fork 1
/
RepeatedExample.tscn
112 lines (93 loc) · 3.07 KB
/
RepeatedExample.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[gd_scene load_steps=3 format=3 uid="uid://ddkq3rwuwxo1d"]
[ext_resource type="Script" path="res://Example.gd" id="1"]
[ext_resource type="Script" path="res://addons/DataBindControls/Binds.gd" id="2"]
[node name="RepeatPanel" type="Panel"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_right = -2.0
grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 3
size_flags_vertical = 3
script = ExtResource("1")
[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
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
layout_mode = 2
[node name="TextureRect" type="TextureRect" parent="VBoxContainer/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
stretch_mode = 4
[node name="Binds" type="Node" parent="VBoxContainer/HBoxContainer/TextureRect"]
_import_path = ""
unique_name_in_owner = ""
process_physics_priority = ""
process_thread_group = ""
script = ExtResource("2")
texture = "model.icon"
[node name="Button" type="Button" parent="VBoxContainer/HBoxContainer"]
layout_mode = 2
text = "X"
[node name="Label" type="Label" parent="VBoxContainer"]
layout_mode = 2
[node name="Binds" type="Node" parent="VBoxContainer/Label"]
_import_path = ""
unique_name_in_owner = ""
process_physics_priority = ""
process_thread_group = ""
script = ExtResource("2")
text = "model.text"
[node name="CheckBox" type="CheckBox" parent="VBoxContainer"]
layout_mode = 2
[node name="Binds" type="Node" parent="VBoxContainer/CheckBox"]
_import_path = ""
unique_name_in_owner = ""
process_physics_priority = ""
process_thread_group = ""
script = ExtResource("2")
button_pressed = "model.pressed"
[node name="CheckButton" type="CheckButton" parent="VBoxContainer"]
layout_mode = 2
[node name="Binds" type="Node" parent="VBoxContainer/CheckButton"]
_import_path = ""
unique_name_in_owner = ""
process_physics_priority = ""
process_thread_group = ""
script = ExtResource("2")
button_pressed = "model.pressed"
[node name="TextEdit3" type="TextEdit" parent="VBoxContainer"]
custom_minimum_size = Vector2(0, 38)
layout_mode = 2
[node name="Binds" type="Node" parent="VBoxContainer/TextEdit3"]
_import_path = ""
unique_name_in_owner = ""
process_physics_priority = ""
process_thread_group = ""
script = ExtResource("2")
text = "model.text"
[node name="LineEdit" type="LineEdit" parent="VBoxContainer"]
layout_mode = 2
[node name="Binds" type="Node" parent="VBoxContainer/LineEdit"]
_import_path = ""
unique_name_in_owner = ""
process_physics_priority = ""
process_thread_group = ""
script = ExtResource("2")
text = "model.text"
[node name="TextEdit" type="TextEdit" parent="VBoxContainer"]
layout_mode = 2
text = "text: root1
pressed: False
array:
- text: repeat0
pressed: False
- text: repeat1
pressed: True
path: /root/EditorNode/@@580/@@581/@@589/@@591/@@595/@@599/@@600/@@601/@@617/@@618/@@627/@@628/@@6066/@@5905/@@5906/@@5907/@@5908/@@5909/RepeatPanel"
[connection signal="pressed" from="VBoxContainer/HBoxContainer/Button" to="." method="_on_Button_pressed"]