meat_madness_redux/godot/screens/EndScreen.tscn

106 lines
3.3 KiB
Plaintext

[gd_scene load_steps=8 format=2]
[ext_resource path="res://assets/audio/human-impact-on-ground-6982.mp3" type="AudioStream" id=1]
[ext_resource path="res://assets/Background_space.png" type="Texture" id=2]
[ext_resource path="res://assets/audio/RandomSong.wav" type="AudioStream" id=3]
[ext_resource path="res://screens/death.gd" type="Script" id=4]
[ext_resource path="res://assets/ui_theme.tres" type="Theme" id=5]
[ext_resource path="res://effects/grainy_shader.tscn" type="PackedScene" id=6]
[ext_resource path="res://assets/title_font.tres" type="DynamicFont" id=7]
[node name="EndScreen" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 5 )
script = ExtResource( 4 )
[node name="BackgroundSpace" type="TextureRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
texture = ExtResource( 2 )
stretch_mode = 1
[node name="Menu" type="VBoxContainer" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -104.0
margin_top = 46.0
margin_right = 104.0
margin_bottom = 244.0
theme = ExtResource( 5 )
[node name="RetryButton" type="Button" parent="Menu"]
margin_right = 208.0
margin_bottom = 36.0
focus_neighbour_bottom = NodePath("../MenuButton")
text = "Retry"
[node name="MenuButton" type="Button" parent="Menu"]
margin_top = 40.0
margin_right = 208.0
margin_bottom = 76.0
focus_neighbour_top = NodePath("../RetryButton")
focus_neighbour_bottom = NodePath("../CreditsButton")
text = "Main Menu"
[node name="CreditsButton" type="Button" parent="Menu"]
margin_top = 80.0
margin_right = 208.0
margin_bottom = 116.0
focus_neighbour_top = NodePath("../MenuButton")
focus_neighbour_bottom = NodePath("../QuitButton")
text = "Credits"
[node name="QuitButton" type="Button" parent="Menu"]
margin_top = 120.0
margin_right = 208.0
margin_bottom = 156.0
focus_neighbour_top = NodePath("../CreditsButton")
focus_neighbour_bottom = NodePath("../RetryButton")
text = "Quit"
[node name="Blackout" type="CanvasLayer" parent="."]
visible = false
[node name="BlackBox" type="ColorRect" parent="Blackout"]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0, 0, 0, 1 )
[node name="BlackoutTimer" type="Timer" parent="."]
one_shot = true
autostart = true
[node name="PlayerDeathSound" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 1 )
autoplay = true
[node name="TitleScreenMusic" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 3 )
[node name="shader" parent="." instance=ExtResource( 6 )]
[node name="Title" type="Label" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -342.0
margin_top = -135.0
margin_right = 342.0
margin_bottom = -71.0
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_outline_modulate = Color( 0, 0, 0, 1 )
custom_constants/shadow_offset_x = 10
custom_fonts/font = ExtResource( 7 )
text = "MEAT MADNESS"
align = 1
[connection signal="pressed" from="Menu/RetryButton" to="." method="_on_RetryButton_pressed"]
[connection signal="pressed" from="Menu/MenuButton" to="." method="_on_MenuButton_pressed"]
[connection signal="pressed" from="Menu/CreditsButton" to="." method="_on_CreditsButton_pressed"]
[connection signal="pressed" from="Menu/QuitButton" to="." method="_on_QuitButton_pressed"]
[connection signal="timeout" from="BlackoutTimer" to="." method="_on_BlackoutTimer_timeout"]