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
[gd_scene load_steps=9 format=2]

[ext_resource path="res://ui/menus/account/Account.tscn" type="PackedScene" id=1]
[ext_resource path="res://ui/menus/settings/Settings.tscn" type="PackedScene" id=2]
[ext_resource path="res://assets/ui/ubuntu/ubuntu-bold.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://ui/theme/main.theme" type="Theme" id=4]
[ext_resource path="res://ui/menus/lobby/Lobby.tscn" type="PackedScene" id=5]
[ext_resource path="res://ui/menus/StartMenu.gd" type="Script" id=7]
[ext_resource path="res://ui/menus/tests/test_runner.tscn" type="PackedScene" id=8]

[sub_resource type="DynamicFont" id=1]
size = 400
use_mipmaps = true
use_filter = true
font_data = ExtResource( 3 )

[node name="StartMenu" type="CenterContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
theme = ExtResource( 4 )
script = ExtResource( 7 )

[node name="tabs" type="TabContainer" parent="."]
margin_left = 147.0
margin_top = 57.0
margin_right = 1275.0
margin_bottom = 743.0
rect_min_size = Vector2( 2, 2 )
mouse_filter = 1
size_flags_horizontal = 0
size_flags_vertical = 0
drag_to_rearrange_enabled = true
use_hidden_tabs_for_min_size = true

[node name="" parent="tabs" instance=ExtResource( 5 )]
margin_left = 30.0
margin_top = 86.0
margin_right = -30.0
margin_bottom = -30.0

[node name="漣" parent="tabs" instance=ExtResource( 2 )]
visible = false
margin_left = 30.0
margin_top = 60.0
margin_right = -30.0
margin_bottom = -30.0

[node name="אּ" parent="tabs" instance=ExtResource( 1 )]
visible = false
margin_left = 30.0
margin_top = 60.0
margin_right = -30.0
margin_bottom = -30.0

[node name="ﭧ" parent="tabs" instance=ExtResource( 8 )]
visible = false
margin_left = 30.0
margin_top = 60.0
margin_right = -30.0
margin_bottom = -30.0

[node name="" type="Button" parent="tabs"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 30.0
margin_top = 60.0
margin_right = -30.0
margin_bottom = -30.0
focus_mode = 0
size_flags_horizontal = 4
size_flags_vertical = 4
custom_fonts/font = SubResource( 1 )
text = "exit"

[connection signal="pressed" from="tabs/" to="." method="_on_quit_pressed"]