123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- [gd_scene load_steps=3 format=2]
- [ext_resource path="res://server/server_ui.gd" type="Script" id=1]
- [ext_resource path="res://server/server.gd" type="Script" id=2]
- [node name="ServerControl" type="Control"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- script = ExtResource( 1 )
- __meta__ = {
- }
- [node name="Server" type="Node" parent="."]
- script = ExtResource( 2 )
- __meta__ = {
- }
- [node name="Panel" type="Panel" parent="."]
- anchor_right = 1.0
- anchor_bottom = 1.0
- __meta__ = {
- }
- [node name="VBoxContainer" type="VBoxContainer" parent="Panel"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- __meta__ = {
- }
- [node name="HBoxContainer" type="HBoxContainer" parent="Panel/VBoxContainer"]
- margin_right = 1024.0
- margin_bottom = 24.0
- __meta__ = {
- }
- [node name="Port" type="SpinBox" parent="Panel/VBoxContainer/HBoxContainer"]
- margin_right = 74.0
- margin_bottom = 24.0
- min_value = 1.0
- max_value = 65535.0
- value = 8000.0
- __meta__ = {
- }
- [node name="Listen" type="Button" parent="Panel/VBoxContainer/HBoxContainer"]
- margin_left = 78.0
- margin_right = 129.0
- margin_bottom = 24.0
- toggle_mode = true
- text = "Listen"
- __meta__ = {
- }
- [node name="HBoxContainer2" type="HBoxContainer" parent="Panel/VBoxContainer"]
- margin_top = 28.0
- margin_right = 1024.0
- margin_bottom = 52.0
- __meta__ = {
- }
- [node name="WriteMode" type="OptionButton" parent="Panel/VBoxContainer/HBoxContainer2"]
- margin_right = 41.0
- margin_bottom = 24.0
- __meta__ = {
- }
- [node name="MPAPI" type="CheckBox" parent="Panel/VBoxContainer/HBoxContainer2"]
- margin_left = 45.0
- margin_right = 171.0
- margin_bottom = 24.0
- pressed = true
- text = "Multiplayer API"
- __meta__ = {
- }
- [node name="Destination" type="OptionButton" parent="Panel/VBoxContainer/HBoxContainer2"]
- margin_left = 175.0
- margin_right = 216.0
- margin_bottom = 24.0
- __meta__ = {
- }
- [node name="HBoxContainer3" type="HBoxContainer" parent="Panel/VBoxContainer"]
- margin_top = 56.0
- margin_right = 1024.0
- margin_bottom = 80.0
- __meta__ = {
- }
- [node name="LineEdit" type="LineEdit" parent="Panel/VBoxContainer/HBoxContainer3"]
- margin_right = 977.0
- margin_bottom = 24.0
- size_flags_horizontal = 3
- __meta__ = {
- }
- [node name="Send" type="Button" parent="Panel/VBoxContainer/HBoxContainer3"]
- margin_left = 981.0
- margin_right = 1024.0
- margin_bottom = 24.0
- text = "Send"
- __meta__ = {
- }
- [node name="RichTextLabel" type="RichTextLabel" parent="Panel/VBoxContainer"]
- margin_top = 84.0
- margin_right = 1024.0
- margin_bottom = 600.0
- size_flags_vertical = 3
- __meta__ = {
- }
- [connection signal="toggled" from="Panel/VBoxContainer/HBoxContainer/Listen" to="." method="_on_Listen_toggled"]
- [connection signal="item_selected" from="Panel/VBoxContainer/HBoxContainer2/WriteMode" to="." method="_on_WriteMode_item_selected"]
- [connection signal="pressed" from="Panel/VBoxContainer/HBoxContainer3/Send" to="." method="_on_Send_pressed"]
|