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

[ext_resource path="res://ui/theme/main.theme" type="Theme" id=1]
[ext_resource path="res://ui/menus/sidebarright/SidebarRight.tscn" type="PackedScene" id=2]
[ext_resource path="res://ui/chat/Chat.tscn" type="PackedScene" id=3]
[ext_resource path="res://ui/board/Game.gd" type="Script" id=4]
[ext_resource path="res://ui/board/Board.tscn" type="PackedScene" id=5]
[ext_resource path="res://ui/board/BackButton.gd" type="Script" id=6]

[node name="Game" type="MarginContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
script = ExtResource( 4 )

[node name="Holder" type="HBoxContainer" parent="."]
margin_right = 1422.0
margin_bottom = 800.0
mouse_filter = 2
theme = ExtResource( 1 )
custom_constants/separation = 0

[node name="Chat" parent="Holder" instance=ExtResource( 3 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 391.0
margin_bottom = 800.0

[node name="middle" type="VBoxContainer" parent="Holder"]
margin_left = 391.0
margin_right = 1031.0
margin_bottom = 800.0
rect_min_size = Vector2( 640, 640 )
mouse_filter = 2
size_flags_horizontal = 3
size_flags_vertical = 3
custom_constants/separation = 0

[node name="Board" parent="Holder/middle" instance=ExtResource( 5 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 640.0
margin_bottom = 800.0
sidebar_path = NodePath("../../SidebarRight")
ui_path = NodePath("../../..")

[node name="BackButton" type="Button" parent="Holder/middle"]
visible = false
margin_left = 245.0
margin_top = 698.0
margin_right = 465.0
margin_bottom = 800.0
rect_min_size = Vector2( 220, 0 )
size_flags_horizontal = 4
size_flags_vertical = 4
text = "go back"
script = ExtResource( 6 )

[node name="SidebarRight" parent="Holder" instance=ExtResource( 2 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 1031.0
margin_right = 1422.0
margin_bottom = 800.0