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

[ext_resource path="res://ui/board/Board.gd" type="Script" id=1]
[ext_resource path="res://ui/board/Arrows.gd" type="Script" id=2]

[node name="Board" type="AspectRatioContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -1122.0
margin_bottom = -500.0
rect_min_size = Vector2( 600, 600 )
mouse_filter = 2
size_flags_horizontal = 3
size_flags_vertical = 3
alignment_horizontal = 0
alignment_vertical = 0
script = ExtResource( 1 )
__meta__ = {
"_edit_group_": true
}

[node name="Background" type="GridContainer" parent="."]
margin_right = 600.0
margin_bottom = 600.0
mouse_filter = 2
custom_constants/vseparation = 0
custom_constants/hseparation = 0
columns = 8

[node name="Pieces" type="Control" parent="."]
margin_right = 600.0
margin_bottom = 600.0
mouse_filter = 2

[node name="Canvas" type="ViewportContainer" parent="."]
modulate = Color( 1, 1, 1, 0.588235 )
margin_right = 600.0
margin_bottom = 600.0
mouse_filter = 2
stretch = true

[node name="Viewport" type="Viewport" parent="Canvas"]
size = Vector2( 600, 600 )
transparent_bg = true
handle_input_locally = false
disable_3d = true
usage = 0
render_target_update_mode = 3

[node name="Arrows" type="Control" parent="Canvas/Viewport"]
script = ExtResource( 2 )
red_overlay = Color( 0.729412, 0.254902, 0.254902, 1 )
green_overlay = Color( 0.1272, 0.53, 0.18762, 1 )

[node name="Foreground" type="GridContainer" parent="."]
margin_right = 600.0
margin_bottom = 600.0
mouse_filter = 2
custom_constants/vseparation = 0
custom_constants/hseparation = 0
columns = 8

[node name="Darken" type="ColorRect" parent="."]
visible = false
margin_right = 600.0
margin_bottom = 600.0
mouse_filter = 2
mouse_default_cursor_shape = 8
color = Color( 0, 0, 0, 0.784314 )

[connection signal="resized" from="." to="." method="_resized"]
quot; = { bg = "dark_gray", fg = "foreground" } "ui.text.info" = "foreground" "ui.virtual.whitespace" = "dark_gray" "ui.virtual.ruler" = { bg = "black" } "ui.virtual.inlay-hint" = { fg = "#e6b450", bg = "#302a20" } # original bg #e6b45033 "ui.menu" = { fg = "foreground", bg = "black" } "ui.menu.selected" = { bg = "gray", fg = "background" } "ui.selection" = { bg = "dark_gray" } "warning" = "yellow" "error" = { fg = "red", modifiers = ["bold"] } "info" = { fg = "blue", modifiers = ["bold"] } "hint" = { fg = "blue", modifiers = ["bold"] } "diagnostic.hint" = { underline = { color = "blue", style="curl"} } "diagnostic.info"= { underline = { color = "blue", style="curl"} } "diagnostic.warning"= { underline = { color = "yellow", style="curl"} } "diagnostic.error"= { underline = { color = "red", style="curl"} } "ui.bufferline" = { fg = "gray", bg = "background" } "ui.bufferline.active" = { fg = "foreground", bg = "dark_gray" } "ui.debug" = { fg = "orange", bg = "background" } "ui.highlight.frameline" = { bg = "#0067a3" } "special" = "orange" [palette] background = "#0f1419" foreground = "#bfbdb6" black = "#131721" blue = "#59c2ff" dark_gray = "#2d3640" cyan = "#73b8ff" gray = "#5c6773" green = "#aad94c" magenta = "#d2a6ff" orange = "#ff8f40" red = "#f07178" yellow = "#e6b450"