This repository has been archived on 2024-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
Jessist/Scenes/CrashHandler.tscn
2022-06-18 13:05:48 +02:00

192 lines
4.8 KiB
Text

[gd_scene load_steps=16 format=2]
[ext_resource path="res://Theme/Jessist_UI_Pixel.tres" type="Theme" id=1]
[ext_resource path="res://Theme/Jessist_UI.tres" type="Theme" id=2]
[ext_resource path="res://Images/logo-transparency.png" type="Texture" id=3]
[ext_resource path="res://AndinaFont.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://InterFont.ttf" type="DynamicFontData" id=5]
[ext_resource path="res://Images/color.png" type="Texture" id=6]
[ext_resource path="res://Scripts/CrashHandler.gd" type="Script" id=7]
[ext_resource path="res://Sounds/bad.ogg" type="AudioStream" id=8]
[ext_resource path="res://Images/UI/copybutton-pressed.png" type="Texture" id=9]
[ext_resource path="res://Images/UI/copybutton.png" type="Texture" id=10]
[ext_resource path="res://Images/UI/quitbutton.png" type="Texture" id=11]
[ext_resource path="res://Images/UI/quitbutton-pressed.png" type="Texture" id=12]
[sub_resource type="DynamicFont" id=1]
size = 150
font_data = ExtResource( 4 )
[sub_resource type="DynamicFont" id=2]
size = 35
font_data = ExtResource( 5 )
[sub_resource type="DynamicFont" id=3]
size = 20
font_data = ExtResource( 5 )
[node name="CrashHandler" type="Node2D"]
script = ExtResource( 7 )
[node name="Background" type="NinePatchRect" parent="."]
margin_right = 1920.0
margin_bottom = 1080.0
texture = ExtResource( 6 )
[node name="JessistLogo" type="NinePatchRect" parent="Background"]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -132.5
margin_top = 20.0
margin_right = 132.5
margin_bottom = 135.0
texture = ExtResource( 3 )
[node name="Title" type="RichTextLabel" parent="Background"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -752.0
margin_top = -430.0
margin_right = 752.0
margin_bottom = -276.0
theme = ExtResource( 1 )
custom_fonts/normal_font = SubResource( 1 )
bbcode_enabled = true
bbcode_text = "[center][shake rate=20 level=40]Jessist crashed[/shake][/center]"
text = "Jessist crashed"
[node name="Description" type="RichTextLabel" parent="Background"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -821.5
margin_top = -267.0
margin_right = 821.5
margin_bottom = 49.0
theme = ExtResource( 2 )
custom_fonts/normal_font = SubResource( 2 )
bbcode_enabled = true
bbcode_text = "[center][shake rate=20 level=5]Jessist crashed unexpectedly, either due to a invalid setting or a bug in the game code.
Down below you can find debugging information that can be used to fix the issue. Please send the debugging information and additional information (e.g. what you did before the crash) to support@staropensource.ddns.net or create a issue at the Jessist repository.
Thank you for playing Jessist![/shake][/center]"
text = "Jessist crashed unexpectedly, either due to a invalid setting or a bug in the game code.
Down below you can find debugging information that can be used to fix the issue. Please send the debugging information and additional information (e.g. what you did before the crash) to support@staropensource.ddns.net or create a issue at the Jessist repository.
Thank you for playing Jessist!"
[node name="CrashInformation" type="RichTextLabel" parent="Background"]
margin_left = 139.0
margin_top = 617.0
margin_right = 1782.0
margin_bottom = 954.0
theme = ExtResource( 2 )
custom_fonts/normal_font = SubResource( 3 )
meta_underlined = false
text = "CrashHandler encountered an error while collecting information
=====================
Debugging information is missing or unavailable
Debugging information can't be retrieved and therefore no debugging information can be displayed.
If you are running a stable release build, you shouldn't see this message.
Please report this bug to StarOpenSource so it can be fixed (with this error message).
Thank you!
Never gonna give you up, never gonna let you down, never gonna run around and desert you, never gonna make you cry, never gonna say goodbye, never gonna tell a lie and hurt you"
[node name="CopyButton" type="TextureButton" parent="Background"]
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = 70.0
margin_top = -113.0
margin_right = 430.0
margin_bottom = -11.0
texture_normal = ExtResource( 10 )
texture_pressed = ExtResource( 9 )
expand = true
[node name="QuitButton" type="TextureButton" parent="Background"]
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = -430.0
margin_top = -113.0
margin_right = -70.0
margin_bottom = -11.0
texture_normal = ExtResource( 11 )
texture_pressed = ExtResource( 12 )
expand = true
[node name="Sound" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 8 )
[connection signal="pressed" from="Background/CopyButton" to="." method="copyButtonPressed"]
[connection signal="pressed" from="Background/QuitButton" to="." method="quitButtonPressed"]