online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/board/Game.tscn')
| -rw-r--r-- | ui/board/Game.tscn | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/ui/board/Game.tscn b/ui/board/Game.tscn new file mode 100644 index 0000000..f2c11ce --- /dev/null +++ b/ui/board/Game.tscn @@ -0,0 +1,63 @@ +[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 +size_flags_horizontal = 3 + +[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 +custom_constants/separation = 10 + +[node name="Board" parent="Holder/middle" instance=ExtResource( 5 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_right = 640.0 +margin_bottom = 640.0 +sidebar_path = NodePath("../../SidebarRight") +ui_path = NodePath("../../..") + +[node name="BackButton" type="Button" parent="Holder/middle"] +visible = false +margin_left = 210.0 +margin_top = 650.0 +margin_right = 430.0 +margin_bottom = 752.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 |