initial commit 4.2

This commit is contained in:
2024-03-30 23:01:14 +01:00
commit ec6facd4fc
37 changed files with 1102 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
[gd_scene load_steps=2 format=3 uid="uid://1t0g0w550twn"]
[ext_resource type="Script" path="res://Control.gd" id="1_yrh3j"]
[node name="Control" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_yrh3j")
[node name="VFlowContainer" type="VFlowContainer" parent="."]
layout_mode = 0
anchor_left = 0.5
anchor_right = 0.5
anchor_bottom = 1.0
offset_left = -29.0
offset_top = 216.0
offset_right = 29.0
grow_horizontal = 2
grow_vertical = 2
[node name="Button" type="Button" parent="VFlowContainer"]
layout_mode = 2
text = "Server"
[node name="Button2" type="Button" parent="VFlowContainer"]
layout_mode = 2
text = "Client"
[node name="MarginContainer" type="MarginContainer" parent="."]
layout_mode = 0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_top = -31.0
grow_horizontal = 2
grow_vertical = 0
[node name="ServerIp" type="LineEdit" parent="MarginContainer"]
layout_mode = 2
text = "localhost"
placeholder_text = "server ip"
[connection signal="pressed" from="VFlowContainer/Button" to="." method="_on_button_pressed"]
[connection signal="pressed" from="VFlowContainer/Button2" to="." method="_on_button_2_pressed"]