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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[gd_scene load_steps=5 format=2]

[ext_resource path="res://ui/ubuntu-bold-regular.tres" type="DynamicFont" id=1]
[ext_resource path="res://assets/flags/rainbow.png" type="Texture" id=2]
[ext_resource path="res://ui/theme/main.theme" type="Theme" id=3]
[ext_resource path="res://ui/menus/sidebarright/UserPanel.gd" type="Script" id=4]

[node name="UserPanel" type="MarginContainer" groups=["userpanel"]]
anchor_right = 1.0
anchor_bottom = 1.0
rect_min_size = Vector2( 0, 40 )
theme = ExtResource( 3 )
custom_constants/margin_top = 2
custom_constants/margin_bottom = 2
script = ExtResource( 4 )

[node name="V" type="VBoxContainer" parent="."]
margin_top = 2.0
margin_right = 1422.0
margin_bottom = 798.0
custom_constants/separation = 0

[node name="H" type="HBoxContainer" parent="V"]
margin_right = 1422.0
margin_bottom = 30.0
custom_constants/separation = 10

[node name="Name" type="Label" parent="V/H"]
unique_name_in_owner = true
margin_right = 52.0
margin_bottom = 30.0
rect_min_size = Vector2( 0, 30 )
custom_fonts/font = ExtResource( 1 )
text = "name"
valign = 1

[node name="Flag" type="TextureRect" parent="V/H"]
unique_name_in_owner = true
margin_left = 62.0
margin_top = 5.0
margin_right = 88.0
margin_bottom = 25.0
rect_min_size = Vector2( 26, 20 )
size_flags_horizontal = 4
size_flags_vertical = 4
texture = ExtResource( 2 )
expand = true
stretch_mode = 6

[node name="Nps" type="Label" parent="V"]
unique_name_in_owner = true
visible = false
margin_top = 30.0
margin_right = 1422.0
margin_bottom = 53.0
custom_fonts/font = ExtResource( 1 )
text = "000004n/s"
valign = 1