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

[ext_resource path="res://ui/theme/main.tres" type="Theme" id=1]
[ext_resource path="res://ui/colorpicker/ColorPickerButton.gd" type="Script" id=2]
[ext_resource path="res://ui/colorpicker/ColorPicker.tscn" type="PackedScene" id=3]

[sub_resource type="StyleBoxFlat" id=1]
content_margin_left = 10.0
content_margin_right = 10.0
content_margin_top = 10.0
content_margin_bottom = 10.0
bg_color = Color( 0, 0, 0, 0.784314 )

[node name="ColorPickerButton" type="Button"]
margin_right = 232.0
margin_bottom = 106.0
focus_mode = 0
theme = ExtResource( 1 )
enabled_focus_mode = 0
text = "button"
script = ExtResource( 2 )

[node name="Popup" type="PopupPanel" parent="."]
visible = true
margin_left = 50.0
margin_top = 50.0
margin_right = 195.0
margin_bottom = 195.0
rect_min_size = Vector2( 125, 125 )
custom_styles/panel = SubResource( 1 )

[node name="ColorPicker" parent="Popup" instance=ExtResource( 3 )]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 10.0
margin_top = 10.0
margin_right = -10.0
margin_bottom = -10.0

[connection signal="done" from="Popup/ColorPicker" to="." method="_on_ColorPicker_done"]