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

[ext_resource path="res://ui/chat/chat_theme.tres" type="Theme" id=1]
[ext_resource path="res://ui/chat/Chat.gd" type="Script" id=2]
[ext_resource path="res://ui/chat/MessageList.tscn" type="PackedScene" id=3]
[ext_resource path="res://ui/chat/TextEditor.tscn" type="PackedScene" id=5]

[node name="Chat" type="MarginContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
rect_min_size = Vector2( 300, 0 )
theme = ExtResource( 1 )
script = ExtResource( 2 )

[node name="v" type="VBoxContainer" parent="."]
margin_right = 1422.0
margin_bottom = 800.0
custom_constants/separation = 0

[node name="MessageList" parent="v" instance=ExtResource( 3 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 1422.0
margin_bottom = 777.0
mouse_filter = 2

[node name="Input" parent="v" instance=ExtResource( 5 )]
margin_top = 777.0
margin_right = 1422.0
margin_bottom = 800.0

[connection signal="done" from="v/Input" to="." method="send"]