online multiplayer chess game (note server currently down)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[gd_scene load_steps=4 format=2]

[ext_resource path="res://ui/menus/local_multiplayer/LocalMultiplayer.gd" type="Script" id=1]
[ext_resource path="res://ui/menus/local_multiplayer/GameConfig.tscn" type="PackedScene" id=2]

[sub_resource type="ButtonGroup" id=1]

[node name="LocalMultiplayer" type="CenterContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )

[node name="V" type="VBoxContainer" parent="."]
margin_left = 671.0
margin_top = 373.0
margin_right = 751.0
margin_bottom = 427.0

[node name="GameConfig" parent="V" instance=ExtResource( 2 )]
unique_name_in_owner = true
visible = false
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 0.0
margin_top = 0.0
margin_right = 568.0
margin_bottom = 250.0
button_group = SubResource( 1 )

[node name="PlayButton" type="Button" parent="V"]
margin_right = 80.0
margin_bottom = 54.0
size_flags_horizontal = 4
text = "play"

[connection signal="pressed" from="V/PlayButton" to="." method="_pressed"]