-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMainControl.tscn
66 lines (59 loc) · 1.42 KB
/
MainControl.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
[gd_scene load_steps=2 format=2]
[ext_resource path="res://MainControl.cs" type="Script" id=1]
[node name="Control" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
webSocketURL = "wss://some_server.com:8080"
[node name="ButtonConnect" type="Button" parent="."]
margin_left = 32.0
margin_top = 350.0
margin_right = 472.0
margin_bottom = 377.0
text = "Connect"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="LineEdit" type="LineEdit" parent="."]
anchor_left = 0.068
anchor_top = 0.77
anchor_right = 0.955
anchor_bottom = 0.83
margin_left = 112.0
margin_top = -3.05176e-05
margin_right = -5.50003
margin_bottom = -3.05176e-05
max_length = 30
context_menu_enabled = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TextEdit" type="TextEdit" parent="."]
margin_left = 26.0
margin_top = 21.0
margin_right = 475.0
margin_bottom = 290.0
readonly = true
highlight_current_line = true
show_line_numbers = true
context_menu_enabled = false
shortcut_keys_enabled = false
virtual_keyboard_enabled = false
selecting_enabled = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="."]
margin_left = 32.0
margin_top = 310.0
margin_right = 130.0
margin_bottom = 333.0
text = "Enter message:"
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="ButtonConnect" to="." method="OnButtonPressed"]