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

[ext_resource path="res://ui/theme/main.tres" type="Theme" id=1]
[ext_resource path="res://ui/StartMenu.gd" type="Script" id=2]
[ext_resource path="res://ui/Settings.tscn" type="PackedScene" id=3]
[ext_resource path="res://ui/Lobby.tscn" type="PackedScene" id=4]
[ext_resource path="res://assets/ui/verdana-bold.ttf" type="DynamicFontData" id=5]
[ext_resource path="res://ui/account/Account.tscn" type="PackedScene" id=6]
[ext_resource path="res://test.gd" type="Script" id=7]
[ext_resource path="res://PGN/test_pgns.tscn" type="PackedScene" id=8]

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

[node name="StartMenu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
theme = ExtResource( 1 )
script = ExtResource( 2 )

[node name="tabs" type="TabContainer" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -684.0
margin_top = -364.0
margin_right = 684.0
margin_bottom = 364.0
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="Lobby" parent="tabs" instance=ExtResource( 4 )]
margin_left = 30.0
margin_top = 90.0
margin_right = -30.0
margin_bottom = -30.0

[node name="Settings" parent="tabs" instance=ExtResource( 3 )]
visible = false
margin_left = 30.0
margin_top = 90.0
margin_right = -30.0
margin_bottom = -30.0

[node name="account" parent="tabs" instance=ExtResource( 6 )]
visible = false
margin_left = 30.0
margin_top = 90.0
margin_right = -30.0
margin_bottom = -30.0

[node name="tests" parent="tabs" instance=ExtResource( 8 )]
visible = false

[node name="quit" type="Button" parent="tabs"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 30.0
margin_top = 90.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 )
enabled_focus_mode = 0
text = "exit"

[node name="tests" type="Node2D" parent="."]
script = ExtResource( 7 )

[connection signal="tab_changed" from="tabs" to="tabs/Lobby" method="_on_tabs_tab_changed"]
[connection signal="pressed" from="tabs/quit" to="." method="_on_quit_pressed"]