-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest.tscn
35 lines (30 loc) · 870 Bytes
/
test.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
[gd_scene load_steps=3 format=2]
[ext_resource path="res://test.gd" type="Script" id=1]
[ext_resource path="res://icon.png" type="Texture" id=2]
[node name="Test" type="Control"]
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Info" type="RichTextLabel" parent="."]
margin_left = 8.0
margin_top = 8.0
margin_right = 520.0
margin_bottom = 712.0
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Input" type="LineEdit" parent="."]
margin_left = 512.0
margin_top = 8.0
margin_right = 768.0
margin_bottom = 40.0
placeholder_text = "Tag write"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 1200, 64 )
texture = ExtResource( 2 )
[connection signal="text_entered" from="Input" to="." method="_on_Input_text_entered"]