diff options
Diffstat (limited to 'client/menu/credits_menu.tscn')
-rw-r--r-- | client/menu/credits_menu.tscn | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/client/menu/credits_menu.tscn b/client/menu/credits_menu.tscn new file mode 100644 index 00000000..65035329 --- /dev/null +++ b/client/menu/credits_menu.tscn @@ -0,0 +1,83 @@ +[gd_scene load_steps=6 format=3 uid="uid://7mqbxa054bjv"] + +[ext_resource type="PackedScene" uid="uid://bgt88u55bndd3" path="res://scenes/menu_background.tscn" id="1_5ay7o"] +[ext_resource type="Script" path="res://scripts/credits_menu.gd" id="1_igs63"] +[ext_resource type="PackedScene" uid="uid://ds1njrptrpdco" path="res://scenes/menu_background_scene.tscn" id="2_k0853"] +[ext_resource type="PackedScene" uid="uid://bg2d78ycorcqk" path="res://scenes/scene_transition.tscn" id="4_fbbdb"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p2qmw"] +bg_color = Color(0, 0, 0, 0.576471) + +[node name="CreditsMenu" 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_igs63") + +[node name="MenuBackground" parent="." instance=ExtResource("1_5ay7o")] +layout_mode = 1 +script = null + +[node name="background_view2" type="SubViewport" parent="MenuBackground"] +handle_input_locally = false +size = Vector2i(1152, 648) +render_target_update_mode = 4 + +[node name="scene" parent="MenuBackground/background_view2" instance=ExtResource("2_k0853")] + +[node name="Panel" type="Panel" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/panel = SubResource("StyleBoxFlat_p2qmw") + +[node name="RichTextLabel" type="RichTextLabel" parent="Panel"] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -222.0 +offset_top = -112.0 +offset_right = 222.0 +offset_bottom = 125.0 +grow_horizontal = 2 +grow_vertical = 2 +bbcode_enabled = true +text = "[center][b]undercooked - a game about cooking[/b] + +by + +[b]tpart, nokoe, metamuffin[/b] + +using assets from kenney.nl + +[/center]" + +[node name="back" type="Button" parent="Panel"] +layout_mode = 1 +anchors_preset = 7 +anchor_left = 0.5 +anchor_top = 1.0 +anchor_right = 0.5 +anchor_bottom = 1.0 +offset_left = -79.0 +offset_top = -65.0 +offset_right = 81.0 +offset_bottom = -34.0 +grow_horizontal = 2 +grow_vertical = 0 +text = "Back" + +[node name="SceneTransition" parent="." instance=ExtResource("4_fbbdb")] +layout_mode = 1 +color = Color(0, 0, 0, 1) + +[connection signal="pressed" from="Panel/back" to="." method="_on_back_pressed"] |