Blob


1 [gd_scene load_steps=2 format=2]
3 [ext_resource path="res://src/menu.gd" type="Script" id=1]
5 [node name="menu" type="Control"]
6 anchor_right = 1.0
7 anchor_bottom = 1.0
8 script = ExtResource( 1 )
10 [node name="VBoxContainer" type="VBoxContainer" parent="."]
11 anchor_left = 0.5
12 anchor_right = 0.5
13 margin_left = -42.5
14 margin_top = 50.0
15 margin_right = 42.5
16 margin_bottom = 40.0
17 custom_constants/separation = 50
19 [node name="serverz" type="Button" parent="VBoxContainer"]
20 margin_right = 124.0
21 margin_bottom = 20.0
22 text = "start server"
24 [node name="label francesco 2" type="Label" parent="VBoxContainer"]
25 margin_top = 70.0
26 margin_right = 124.0
27 margin_bottom = 84.0
28 text = "--- oppure ---"
29 align = 1
31 [node name="clientz" type="Button" parent="VBoxContainer"]
32 margin_top = 134.0
33 margin_right = 124.0
34 margin_bottom = 154.0
35 text = "connect to server"
37 [node name="label francesco" type="Label" parent="VBoxContainer"]
38 margin_top = 204.0
39 margin_right = 124.0
40 margin_bottom = 218.0
41 text = "IP ADDRESS:"
42 align = 1
44 [node name="ipaddr" type="LineEdit" parent="VBoxContainer"]
45 margin_top = 268.0
46 margin_right = 124.0
47 margin_bottom = 292.0
48 text = "127.0.0.1"
49 caret_blink = true
50 caret_blink_speed = 0.5
52 [connection signal="button_down" from="VBoxContainer/serverz" to="." method="_on_serverz_click"]
53 [connection signal="button_down" from="VBoxContainer/clientz" to="." method="_on_clientz_click"]