forked from Jantho1990/Godot-Global-Signal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlobalSignalTestScene.tscn
42 lines (35 loc) · 1.13 KB
/
GlobalSignalTestScene.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
[gd_scene load_steps=3 format=2]
[ext_resource path="res://TestTextEdit.gd" type="Script" id=1]
[ext_resource path="res://TestLabel.gd" type="Script" id=2]
[node name="GlobalSignalTestScene" type="Node"]
[node name="MarginContainer" type="MarginContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
size_flags_vertical = 3
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CenterContainer" type="CenterContainer" parent="MarginContainer"]
margin_right = 1024.0
margin_bottom = 600.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/CenterContainer"]
margin_left = 473.0
margin_top = 279.0
margin_right = 550.0
margin_bottom = 321.0
[node name="TestTextEdit" type="LineEdit" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_right = 77.0
margin_bottom = 24.0
rect_min_size = Vector2( 0, 20 )
text = "Sample"
script = ExtResource( 1 )
[node name="TestLabel" type="Label" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 28.0
margin_right = 77.0
margin_bottom = 42.0
text = "Default Text"
script = ExtResource( 2 )