blob: 9b34186a7dbaa030a82187eb47587ee24f9b7036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[gd_scene load_steps=2 format=2]
[ext_resource path="res://network/GameCoordinatorTester.gd" type="Script" id=2]
[node name="GameCoordinatorTester" type="VBoxContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 2 )
[node name="ControlsHBox" type="HBoxContainer" parent="."]
margin_right = 1600.0
margin_bottom = 20.0
[node name="AddClientBtn" type="Button" parent="ControlsHBox"]
margin_right = 77.0
margin_bottom = 20.0
text = "Add client"
[connection signal="pressed" from="ControlsHBox/AddClientBtn" to="." method="create_gc_client"]
|