This repository has been archived on 2022-01-09. You can view files and clone it, but cannot push or open issues/pull-requests.
liblast/Game/Assets/UI/GUI.tscn

63 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-09-12 04:01:38 +02:00
[gd_scene load_steps=6 format=3 uid="uid://b856vwmg8a6o4"]
2021-06-01 23:53:32 +02:00
2021-09-11 15:22:08 +02:00
[ext_resource type="PackedScene" uid="uid://d135tevauvmoq" path="res://Assets/UI/MenuButton.tscn" id="1"]
2021-09-12 01:17:53 +02:00
[ext_resource type="PackedScene" uid="uid://d2d0sbb84rehm" path="res://Assets/UI/Menu.tscn" id="2"]
2021-09-12 04:01:38 +02:00
[ext_resource type="Texture2D" uid="uid://njj8psk8fh7" path="res://Assets/UI/Logo.png" id="2_oueme"]
2021-09-11 14:38:45 +02:00
[ext_resource type="Script" path="res://Assets/UI/GUI.gd" id="3"]
2021-09-12 01:17:53 +02:00
[ext_resource type="AudioStream" uid="uid://dfxftf2huumhn" path="res://Assets/SFX/UI_Cancel.wav" id="4_lnh50"]
2021-06-01 23:53:32 +02:00
[node name="GUI" type="CenterContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
2021-09-11 14:38:45 +02:00
script = ExtResource( "3" )
__meta__ = {
"_edit_use_anchors_": false
}
2021-06-01 23:53:32 +02:00
2021-09-12 04:01:38 +02:00
[node name="Logo" type="TextureRect" parent="."]
offset_left = 256.0
offset_top = 12.0
offset_right = 768.0
offset_bottom = 587.0
rect_min_size = Vector2(0, 575)
size_flags_horizontal = 0
size_flags_vertical = 0
texture = ExtResource( "2_oueme" )
script = null
__meta__ = {
"_edit_use_anchors_": false
}
2021-09-11 14:38:45 +02:00
[node name="Menu" parent="." instance=ExtResource( "2" )]
2021-09-12 04:01:38 +02:00
offset_left = 412.0
2021-06-01 23:53:32 +02:00
offset_top = 252.0
2021-09-12 04:01:38 +02:00
offset_right = 612.0
2021-06-01 23:53:32 +02:00
offset_bottom = 347.0
2021-09-12 04:01:38 +02:00
rect_min_size = Vector2(200, 0)
2021-06-01 23:53:32 +02:00
2021-09-11 14:38:45 +02:00
[node name="Options" parent="Menu" instance=ExtResource( "1" )]
2021-06-02 17:00:28 +02:00
anchor_right = 0.0
anchor_bottom = 0.0
2021-06-01 23:53:32 +02:00
offset_top = 33.0
2021-09-12 04:01:38 +02:00
offset_right = 200.0
2021-06-01 23:53:32 +02:00
offset_bottom = 62.0
text = "options"
2021-06-02 17:00:28 +02:00
label = "options"
2021-06-01 23:53:32 +02:00
2021-09-11 14:38:45 +02:00
[node name="Quit" parent="Menu" instance=ExtResource( "1" )]
2021-06-02 17:00:28 +02:00
anchor_right = 0.0
anchor_bottom = 0.0
2021-06-01 23:53:32 +02:00
offset_top = 66.0
2021-09-12 04:01:38 +02:00
offset_right = 200.0
2021-06-01 23:53:32 +02:00
offset_bottom = 95.0
text = "quit"
2021-06-02 17:00:28 +02:00
label = "quit"
2021-06-01 23:53:32 +02:00
2021-09-12 01:17:53 +02:00
[node name="ClickSound" parent="Menu/Quit" index="0"]
stream = ExtResource( "4_lnh50" )
2021-09-11 14:38:45 +02:00
[connection signal="pressed" from="Menu/Options" to="Menu" method="open_menu" binds= ["res://Assets/UI/OptionsMenu.tscn"]]
2021-06-02 17:00:28 +02:00
[connection signal="pressed" from="Menu/Quit" to="." method="quit_game"]
2021-09-12 01:17:53 +02:00
[editable path="Menu/Quit"]