summaryrefslogtreecommitdiff
path: root/UI/Menu/Menu.tscn
blob: c29cf2207dcf7b96c6902e38685b866a2947a136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[gd_scene load_steps=5 format=3 uid="uid://dg1cuxm1da1rh"]

[ext_resource type="Script" path="res://UI/Menu/Menu.gd" id="1"]
[ext_resource type="PackedScene" path="res://UI/Menu/KeyBindings.tscn" id="2"]

[sub_resource type="StyleBoxFlat" id="3"]
bg_color = Color(0, 0, 0, 0.882353)

[sub_resource type="StyleBoxFlat" id="2"]
bg_color = Color(1, 1, 1, 0)
border_width_left = 1
border_width_top = 1
border_width_right = 1
border_width_bottom = 1

[node name="Menu" type="CanvasLayer"]
process_mode = 2
script = ExtResource("1")

[node name="Container" type="Panel" parent="."]
offset_right = 1024.0
offset_bottom = 600.0
theme_override_styles/panel = SubResource("3")

[node name="Close" type="Button" parent="Container"]
layout_mode = 0
offset_left = 976.0
offset_right = 1023.0
offset_bottom = 20.0
theme_override_styles/normal = SubResource("2")
text = "Close"

[node name="KeyBindings" parent="Container" instance=ExtResource("2")]
anchors_preset = 0
offset_right = 24.0
offset_bottom = 24.0

[connection signal="pressed" from="Container/Close" to="." method="_on_Close_pressed"]