diff options
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/book/book.gd | 5 | ||||
-rw-r--r-- | client/menu/book/book.tscn | 23 |
2 files changed, 28 insertions, 0 deletions
diff --git a/client/menu/book/book.gd b/client/menu/book/book.gd new file mode 100644 index 00000000..2dd5a4d2 --- /dev/null +++ b/client/menu/book/book.gd @@ -0,0 +1,5 @@ +extends Menu + + +func _ready(): + pass diff --git a/client/menu/book/book.tscn b/client/menu/book/book.tscn new file mode 100644 index 00000000..d8266ed9 --- /dev/null +++ b/client/menu/book/book.tscn @@ -0,0 +1,23 @@ +[gd_scene load_steps=2 format=3 uid="uid://bdggwo8un3mys"] + +[ext_resource type="Script" path="res://menu/book/book.gd" id="1_gyisx"] + +[node name="Book" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_gyisx") + +[node name="ScrollContainer" type="ScrollContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="ScrollContainer"] +layout_mode = 2 |