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

[ext_resource path="res://ui/theme/main.tres" type="Theme" id=1]
[ext_resource path="res://ui/barbutton/BarTextureButton.tscn" type="PackedScene" id=2]
[ext_resource path="res://assets/ui/close.png" type="Texture" id=3]
[ext_resource path="res://ui/confirm/confirm.gd" type="Script" id=4]
[ext_resource path="res://assets/ui/check.png" type="Texture" id=5]
[ext_resource path="res://ui/verdana-bold-small.tres" type="DynamicFont" id=6]

[node name="Confirm" type="WindowDialog"]
margin_right = 576.0
margin_bottom = 168.0
rect_min_size = Vector2( 700, 0 )
theme = ExtResource( 1 )
custom_fonts/title_font = ExtResource( 6 )
popup_exclusive = true
script = ExtResource( 4 )

[node name="H" type="HBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
custom_constants/separation = 0
alignment = 1

[node name="no" parent="H" instance=ExtResource( 2 )]
margin_left = 350.0
margin_top = 34.0
margin_right = 450.0
margin_bottom = 134.0
rect_min_size = Vector2( 100, 100 )
size_flags_horizontal = 4
size_flags_vertical = 4
texture_normal = ExtResource( 3 )

[node name="yes" parent="H" instance=ExtResource( 2 )]
margin_left = 250.0
margin_top = 34.0
margin_right = 350.0
margin_bottom = 134.0
rect_min_size = Vector2( 100, 100 )
size_flags_horizontal = 4
size_flags_vertical = 4
texture_normal = ExtResource( 5 )

[connection signal="pressed" from="H/no" to="." method="_pressed" binds= [ false ]]
[connection signal="pressed" from="H/yes" to="." method="_pressed" binds= [ true ]]