summaryrefslogtreecommitdiff
path: root/client/menu/about.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'client/menu/about.tscn')
-rw-r--r--client/menu/about.tscn84
1 files changed, 84 insertions, 0 deletions
diff --git a/client/menu/about.tscn b/client/menu/about.tscn
new file mode 100644
index 00000000..e02b22da
--- /dev/null
+++ b/client/menu/about.tscn
@@ -0,0 +1,84 @@
+[gd_scene load_steps=6 format=3 uid="uid://bpaenm8c6nmo8"]
+
+[ext_resource type="Script" path="res://menu/about.gd" id="1_0acu0"]
+[ext_resource type="Material" uid="uid://2j8a0c0a2ta5" path="res://menu/theme/materials/blur_material.tres" id="1_ai5pk"]
+[ext_resource type="StyleBox" uid="uid://bw4jamyna1top" path="res://menu/theme/style/panel_style_sidebar.tres" id="2_pya1x"]
+[ext_resource type="FontFile" uid="uid://bo4vh5xkpvrh1" path="res://menu/theme/fonts/font-sansita-swashed.woff2" id="4_kx3j7"]
+
+[sub_resource type="FontVariation" id="FontVariation_o2r3e"]
+base_font = ExtResource("4_kx3j7")
+variation_embolden = 0.5
+
+[node name="AboutMenu" 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_0acu0")
+
+[node name="side" type="PanelContainer" parent="."]
+material = ExtResource("1_ai5pk")
+layout_mode = 1
+anchors_preset = 9
+anchor_bottom = 1.0
+offset_right = 294.0
+grow_vertical = 2
+theme_override_styles/panel = ExtResource("2_pya1x")
+
+[node name="margin" type="MarginContainer" parent="side"]
+layout_mode = 2
+theme_override_constants/margin_left = 20
+theme_override_constants/margin_top = 20
+theme_override_constants/margin_right = 20
+theme_override_constants/margin_bottom = 20
+
+[node name="options" type="VBoxContainer" parent="side/margin"]
+layout_mode = 2
+
+[node name="title" type="Label" parent="side/margin/options"]
+auto_translate_mode = 2
+layout_mode = 2
+theme_override_colors/font_outline_color = Color(0.566408, 0.208917, 0.266045, 1)
+theme_override_constants/outline_size = 10
+theme_override_fonts/font = SubResource("FontVariation_o2r3e")
+theme_override_font_sizes/font_size = 48
+text = "Hurry Curry!"
+
+[node name="spacer" type="Control" parent="side/margin/options"]
+custom_minimum_size = Vector2(0, 10)
+layout_mode = 2
+
+[node name="first" type="VBoxContainer" parent="side/margin/options"]
+layout_mode = 2
+
+[node name="credits" type="Button" parent="side/margin/options/first"]
+layout_mode = 2
+text = "c.menu.about.credits"
+alignment = 0
+
+[node name="legal" type="Button" parent="side/margin/options/first"]
+layout_mode = 2
+text = "c.menu.about.legal"
+alignment = 0
+
+[node name="source" type="Button" parent="side/margin/options/first"]
+layout_mode = 2
+text = "c.menu.about.source"
+alignment = 0
+
+[node name="first2" type="VBoxContainer" parent="side/margin/options"]
+layout_mode = 2
+size_flags_vertical = 3
+alignment = 2
+
+[node name="back" type="Button" parent="side/margin/options/first2"]
+layout_mode = 2
+text = "c.menu.back"
+alignment = 0
+
+[connection signal="pressed" from="side/margin/options/first/credits" to="." method="_on_credits_pressed"]
+[connection signal="pressed" from="side/margin/options/first/legal" to="." method="_on_legal_pressed"]
+[connection signal="pressed" from="side/margin/options/first/source" to="." method="_on_source_pressed"]
+[connection signal="pressed" from="side/margin/options/first2/back" to="." method="_on_back_pressed"]