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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[gd_scene load_steps=9 format=2]

[ext_resource path="res://ui/main.tres" type="Theme" id=1]
[ext_resource path="res://ui/roboto.tres" type="DynamicFont" id=2]
[ext_resource path="res://assets/ui/Roboto-Medium.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://ui/TimerLabels.gd" type="Script" id=4]
[ext_resource path="res://ui/Timer.gd" type="Script" id=5]
[ext_resource path="res://ui/MovesList.gd" type="Script" id=6]
[ext_resource path="res://ui/Status.gd" type="Script" id=7]

[sub_resource type="DynamicFont" id=1]
size = 25
font_data = ExtResource( 3 )

[node name="UI" type="CanvasLayer"]

[node name="Holder" type="Control" parent="."]
anchor_left = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -400.0
theme = ExtResource( 1 )
__meta__ = {
"_edit_lock_": true
}

[node name="Back" type="ColorRect" parent="Holder"]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0.141176, 0.141176, 0.141176, 1 )
__meta__ = {
"_edit_lock_": true
}

[node name="VBox" type="VBoxContainer" parent="Holder/Back"]
anchor_right = 1.0
anchor_bottom = 1.0
custom_constants/separation = 50
alignment = 1
__meta__ = {
"_edit_lock_": true
}

[node name="BlackTime" type="Label" parent="Holder/Back/VBox"]
margin_top = 167.0
margin_right = 400.0
margin_bottom = 250.0
custom_fonts/font = ExtResource( 2 )
text = "00:00.0"
align = 1
valign = 1
script = ExtResource( 4 )
__meta__ = {
"_edit_group_": true,
"_edit_lock_": true
}

[node name="ColorRect" type="ColorRect" parent="Holder/Back/VBox/BlackTime"]
show_behind_parent = true
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 72.0
margin_right = -72.0
color = Color( 0, 0, 0, 1 )

[node name="Status" type="Label" parent="Holder/Back/VBox"]
visible = false
margin_top = 355.0
margin_right = 400.0
margin_bottom = 386.0
custom_fonts/font = SubResource( 1 )
align = 1
autowrap = true
script = ExtResource( 7 )

[node name="MovesList" type="ItemList" parent="Holder/Back/VBox"]
margin_top = 300.0
margin_right = 400.0
margin_bottom = 500.0
rect_min_size = Vector2( 0, 200 )
focus_mode = 0
custom_constants/hseparation = 25
max_columns = 2
script = ExtResource( 6 )

[node name="WhiteTime" type="Label" parent="Holder/Back/VBox"]
margin_top = 550.0
margin_right = 400.0
margin_bottom = 633.0
custom_fonts/font = ExtResource( 2 )
text = "00:00.0"
align = 1
valign = 1
script = ExtResource( 4 )
__meta__ = {
"_edit_group_": true,
"_edit_lock_": true
}
white = true

[node name="ColorRect" type="ColorRect" parent="Holder/Back/VBox/WhiteTime"]
show_behind_parent = true
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 72.0
margin_right = -72.0
color = Color( 0, 0, 0, 1 )

[node name="Timer" type="Node" parent="Holder/Back/VBox"]
script = ExtResource( 5 )