diff options
Diffstat (limited to 'scenes/pausemenu.tscn')
-rw-r--r-- | scenes/pausemenu.tscn | 105 |
1 files changed, 53 insertions, 52 deletions
diff --git a/scenes/pausemenu.tscn b/scenes/pausemenu.tscn index e23e95c..60fae1a 100644 --- a/scenes/pausemenu.tscn +++ b/scenes/pausemenu.tscn @@ -1,89 +1,90 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=11 format=3 uid="uid://dgeurb05rmq88"] -[ext_resource path="res://scripts/pausemenu.gd" type="Script" id=1] -[ext_resource path="res://textures/options_hover.png" type="Texture" id=2] -[ext_resource path="res://textures/options.png" type="Texture" id=3] -[ext_resource path="res://textures/retry_hover.png" type="Texture" id=4] -[ext_resource path="res://textures/retry.png" type="Texture" id=5] -[ext_resource path="res://textures/quit_hover.png" type="Texture" id=6] -[ext_resource path="res://textures/quit.png" type="Texture" id=7] -[ext_resource path="res://textures/help.png" type="Texture" id=8] -[ext_resource path="res://textures/help_hover.png" type="Texture" id=9] -[ext_resource path="res://theme_data/interface_theme.tres" type="Theme" id=10] +[ext_resource type="Script" path="res://scripts/pausemenu.gd" id="1"] +[ext_resource type="Texture2D" uid="uid://b4ywdgjr33qbm" path="res://textures/options_hover.png" id="2"] +[ext_resource type="Texture2D" uid="uid://c1lg2y0602jok" path="res://textures/options.png" id="3"] +[ext_resource type="Texture2D" uid="uid://cyk45edx4rokj" path="res://textures/retry_hover.png" id="4"] +[ext_resource type="Texture2D" uid="uid://byumgtet2e552" path="res://textures/retry.png" id="5"] +[ext_resource type="Texture2D" uid="uid://c1fq67yw20je5" path="res://textures/quit_hover.png" id="6"] +[ext_resource type="Texture2D" uid="uid://cvwyjpoqfsdc4" path="res://textures/quit.png" id="7"] +[ext_resource type="Texture2D" uid="uid://bjun0ox7x2xmh" path="res://textures/help.png" id="8"] +[ext_resource type="Texture2D" uid="uid://dkb835ytdw7j7" path="res://textures/help_hover.png" id="9"] +[ext_resource type="Theme" uid="uid://2jc1rrh032m0" path="res://theme_data/interface_theme.tres" id="10"] [node name="PauseMenu" type="Control"] -margin_right = 214.0 -margin_bottom = 120.0 -theme = ExtResource( 10 ) -script = ExtResource( 1 ) +process_mode = 3 +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("10") +script = ExtResource("1") [node name="ColorRect" type="ColorRect" parent="."] +layout_mode = 1 +anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -color = Color( 0, 0, 0, 0.54902 ) -__meta__ = { -"_edit_use_anchors_": true -} +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0, 0, 0, 0.54902) [node name="Panel" type="Panel" parent="."] +layout_mode = 0 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = -43.0 -margin_top = -26.0 -margin_right = 43.0 -margin_bottom = 13.0 +offset_left = -43.0 +offset_top = -26.0 +offset_right = 43.0 +offset_bottom = 13.0 [node name="HoverLabel" type="Label" parent="."] +layout_mode = 0 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = -38.0 -margin_top = -25.0 -margin_right = 38.0 -margin_bottom = -9.0 +offset_left = -38.0 +offset_top = -25.0 +offset_right = 38.0 +offset_bottom = -9.0 text = "PAUSED" -align = 1 -valign = 1 +horizontal_alignment = 1 [node name="HBoxContainer" type="HBoxContainer" parent="."] +layout_mode = 0 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = -38.0 -margin_top = -8.0 -margin_right = 38.0 -margin_bottom = 8.0 +offset_left = -38.0 +offset_top = -8.0 +offset_right = 38.0 +offset_bottom = 8.0 [node name="RestartButton" type="TextureButton" parent="HBoxContainer"] -margin_right = 16.0 -margin_bottom = 16.0 -texture_normal = ExtResource( 5 ) -texture_hover = ExtResource( 4 ) +layout_mode = 2 +texture_normal = ExtResource("5") +texture_hover = ExtResource("4") [node name="OptionsButton" type="TextureButton" parent="HBoxContainer"] -margin_left = 20.0 -margin_right = 36.0 -margin_bottom = 16.0 -texture_normal = ExtResource( 3 ) -texture_hover = ExtResource( 2 ) +layout_mode = 2 +texture_normal = ExtResource("3") +texture_hover = ExtResource("2") [node name="HelpButton" type="TextureButton" parent="HBoxContainer"] -margin_left = 40.0 -margin_right = 56.0 -margin_bottom = 16.0 -texture_normal = ExtResource( 8 ) -texture_hover = ExtResource( 9 ) +layout_mode = 2 +texture_normal = ExtResource("8") +texture_hover = ExtResource("9") [node name="QuitButton" type="TextureButton" parent="HBoxContainer"] -margin_left = 60.0 -margin_right = 76.0 -margin_bottom = 16.0 -texture_normal = ExtResource( 7 ) -texture_hover = ExtResource( 6 ) +layout_mode = 2 +texture_normal = ExtResource("7") +texture_hover = ExtResource("6") [connection signal="mouse_entered" from="ColorRect" to="." method="_on_ColorRect_mouse_entered"] [connection signal="mouse_entered" from="Panel" to="." method="_on_Panel_mouse_entered"] |