mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 13:30:07 +01:00
70 lines
1.7 KiB
Plaintext
70 lines
1.7 KiB
Plaintext
[gd_scene format=3 uid="uid://ep13situ5bnn"]
|
|
|
|
[node name="Chat" type="Control"]
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
|
|
[node name="Panel" type="Panel" parent="."]
|
|
layout_mode = 0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="Panel"]
|
|
layout_mode = 0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
|
|
[node name="Listen" type="HBoxContainer" parent="Panel/VBoxContainer"]
|
|
layout_mode = 2
|
|
|
|
[node name="Connect" type="HBoxContainer" parent="Panel/VBoxContainer"]
|
|
layout_mode = 2
|
|
|
|
[node name="Host" type="LineEdit" parent="Panel/VBoxContainer/Connect"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
text = "ws://localhost:8000/test/"
|
|
placeholder_text = "ws://my.server/path/"
|
|
|
|
[node name="Connect" type="Button" parent="Panel/VBoxContainer/Connect"]
|
|
layout_mode = 2
|
|
toggle_mode = true
|
|
text = "Connect"
|
|
|
|
[node name="Port" type="SpinBox" parent="Panel/VBoxContainer/Connect"]
|
|
layout_mode = 2
|
|
min_value = 1.0
|
|
max_value = 65535.0
|
|
value = 8000.0
|
|
|
|
[node name="Listen" type="Button" parent="Panel/VBoxContainer/Connect"]
|
|
layout_mode = 2
|
|
toggle_mode = true
|
|
text = "Listen"
|
|
|
|
[node name="Send" type="HBoxContainer" parent="Panel/VBoxContainer"]
|
|
layout_mode = 2
|
|
|
|
[node name="LineEdit" type="LineEdit" parent="Panel/VBoxContainer/Send"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
placeholder_text = "Enter some text to send..."
|
|
|
|
[node name="Send" type="Button" parent="Panel/VBoxContainer/Send"]
|
|
layout_mode = 2
|
|
text = "Send"
|
|
|
|
[node name="RichTextLabel" type="RichTextLabel" parent="Panel/VBoxContainer"]
|
|
layout_mode = 2
|
|
size_flags_vertical = 3
|