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/MainScreen.tscn
2022-06-18 13:05:48 +02:00

173 lines
5.3 KiB
Text

[gd_scene load_steps=16 format=2]
[ext_resource path="res://Images/UI/playbutton-pressed.png" type="Texture" id=1]
[ext_resource path="res://Images/UI/quitbutton.png" type="Texture" id=2]
[ext_resource path="res://Images/UI/creditsbutton.png" type="Texture" id=3]
[ext_resource path="res://Images/color.png" type="Texture" id=4]
[ext_resource path="res://Images/warn-dev.png" type="Texture" id=5]
[ext_resource path="res://Images/UI/creditsbutton-pressed.png" type="Texture" id=6]
[ext_resource path="res://Images/UI/quitbutton-pressed.png" type="Texture" id=7]
[ext_resource path="res://Images/UI/closebutton-pressed.png" type="Texture" id=8]
[ext_resource path="res://Scripts/MainScreen.gd" type="Script" id=9]
[ext_resource path="res://Images/color-alt.png" type="Texture" id=10]
[ext_resource path="res://Theme/Jessist_UI.tres" type="Theme" id=11]
[ext_resource path="res://Images/UI/closebutton.png" type="Texture" id=12]
[ext_resource path="res://Images/UI/playbutton.png" type="Texture" id=13]
[ext_resource path="res://Images/transparency.png" type="Texture" id=14]
[ext_resource path="res://Images/logo-transparency.png" type="Texture" id=15]
[node name="UI" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 9 )
[node name="Background" type="NinePatchRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
rect_pivot_offset = Vector2( 387, 342 )
texture = ExtResource( 4 )
[node name="warn-dev" type="NinePatchRect" parent="Background"]
anchor_left = 1.0
anchor_right = 1.0
margin_left = -345.0
margin_bottom = 100.0
texture = ExtResource( 5 )
[node name="logo" type="NinePatchRect" parent="Background"]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -87.5
margin_top = 25.0
margin_right = 87.5
margin_bottom = 97.0
texture = ExtResource( 15 )
[node name="MainUI" type="NinePatchRect" parent="Background"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -200.0
margin_top = -200.0
margin_right = 200.0
margin_bottom = 200.0
texture = ExtResource( 14 )
[node name="StartButton" type="TextureButton" parent="Background/MainUI"]
anchor_right = 0.039
anchor_bottom = 0.067
margin_left = 84.0
margin_top = 121.0
margin_right = 308.4
margin_bottom = 162.2
rect_pivot_offset = Vector2( -197, -78 )
texture_normal = ExtResource( 13 )
texture_pressed = ExtResource( 1 )
expand = true
[node name="CreditsButton" type="TextureButton" parent="Background/MainUI"]
anchor_right = 0.039
anchor_bottom = 0.067
margin_left = 84.0
margin_top = 193.0
margin_right = 308.4
margin_bottom = 234.2
rect_pivot_offset = Vector2( -197, -78 )
texture_normal = ExtResource( 3 )
texture_pressed = ExtResource( 6 )
expand = true
[node name="QuitButton" type="TextureButton" parent="Background/MainUI"]
anchor_right = 0.039
anchor_bottom = 0.067
margin_left = 84.0
margin_top = 267.0
margin_right = 308.4
margin_bottom = 308.2
rect_pivot_offset = Vector2( -197, -78 )
texture_normal = ExtResource( 2 )
texture_pressed = ExtResource( 7 )
expand = true
[node name="CreditsUI" type="NinePatchRect" parent="Background"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -266.667
margin_top = -400.0
margin_right = 266.667
margin_bottom = 400.0
texture = ExtResource( 10 )
[node name="RichTextLabel" type="RichTextLabel" parent="Background/CreditsUI"]
margin_right = 533.0
margin_bottom = 800.0
theme = ExtResource( 11 )
bbcode_enabled = true
bbcode_text = "Credits
Developer » StarOpenSource
Project Maintainer » JeremyStarTM
Music:
Rocket Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0
http://creativecommons.org/licenses/by/3.0
Sounds:
Fishtank Bubbles 2 by Amanda
https://soundbible.com/1571-Fishtank-Bubbles-2.html
Licensed under Creative Commons: By Attribution 3.0
http://creativecommons.org/licenses/by/3.0
Fonts:
Inter (Default)
Andina (Pixel)
Playtesters:
Friedrich Meichs (@friedrichmeichs), Tim (@Tim__53), [rainbow]prinzessinbo[/rainbow], gandalfkenobi007 (@gandalfknobi007), richytherichkid08"
text = "Credits
Developer » StarOpenSource
Project Maintainer » JeremyStarTM
Music:
Rocket Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0
http://creativecommons.org/licenses/by/3.0
Sounds:
Fishtank Bubbles 2 by Amanda
https://soundbible.com/1571-Fishtank-Bubbles-2.html
Licensed under Creative Commons: By Attribution 3.0
http://creativecommons.org/licenses/by/3.0
Fonts:
Inter (Default)
Andina (Pixel)
Playtesters:
Friedrich Meichs (@friedrichmeichs), Tim (@Tim__53), prinzessinbo, gandalfkenobi007 (@gandalfknobi007), richytherichkid08"
__meta__ = {
"_editor_description_": ""
}
[node name="CreditsCloseButton" type="TextureButton" parent="Background/CreditsUI"]
anchor_right = 0.039
anchor_bottom = 0.067
margin_left = 368.0
margin_right = 512.4
margin_bottom = -8.26707
rect_pivot_offset = Vector2( -197, -78 )
texture_normal = ExtResource( 12 )
texture_pressed = ExtResource( 8 )
expand = true
[connection signal="pressed" from="Background/MainUI/StartButton" to="." method="startButtonPressed"]
[connection signal="pressed" from="Background/MainUI/CreditsButton" to="." method="creditsButtonPressed"]
[connection signal="pressed" from="Background/MainUI/QuitButton" to="." method="quitButtonPressed"]
[connection signal="pressed" from="Background/CreditsUI/CreditsCloseButton" to="." method="creditsCloseButtonPressed"]