repeat-after-me/scenes/settings_menu.tscn

121 lines
3.6 KiB
Text
Raw Normal View History

[gd_scene load_steps=11 format=3 uid="uid://dq3jysvuu7ix"]
[ext_resource type="Shader" uid="uid://da36ryj6twm16" path="res://src/shaders/panel.gdshader" id="1_cr101"]
[ext_resource type="Script" uid="uid://dj4i6sfufsa0t" path="res://src/ui/settings_menu.gd" id="2_labj1"]
[ext_resource type="Theme" uid="uid://06umghrsjedx" path="res://resources/main_theme_overrides.tres" id="2_lwwgp"]
[ext_resource type="Texture2D" uid="uid://cbv7fmq2x6ucf" path="res://assets/icons/CloseIcon.png" id="2_wswnh"]
[ext_resource type="Script" uid="uid://ctgq6winpr3kw" path="res://src/ui/info_footer.gd" id="5_lwwgp"]
[sub_resource type="ShaderMaterial" id="ShaderMaterial_choun"]
shader = ExtResource("1_cr101")
[sub_resource type="PlaceholderTexture2D" id="PlaceholderTexture2D_85g3d"]
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_choun"]
texture = SubResource("PlaceholderTexture2D_85g3d")
[sub_resource type="LabelSettings" id="LabelSettings_labj1"]
font_size = 24
[sub_resource type="LabelSettings" id="LabelSettings_lwwgp"]
font_size = 14
font_color = Color(1, 1, 1, 0.768627)
[node name="SettingsMenu" type="Panel"]
material = SubResource("ShaderMaterial_choun")
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme = ExtResource("2_lwwgp")
theme_override_styles/panel = SubResource("StyleBoxTexture_choun")
script = ExtResource("2_labj1")
[node name="MenuLabel" type="Label" parent="."]
layout_mode = 0
offset_left = 16.0
offset_top = 16.0
offset_right = 104.0
offset_bottom = 39.0
text = "Settings"
label_settings = SubResource("LabelSettings_labj1")
[node name="CloseSettingsButton" type="TextureButton" parent="."]
layout_mode = 1
anchors_preset = 1
anchor_left = 1.0
anchor_right = 1.0
offset_left = -32.0
offset_top = 16.0
offset_right = -12.0
offset_bottom = 36.0
grow_horizontal = 0
texture_normal = ExtResource("2_wswnh")
stretch_mode = 0
[node name="ImportExportLabel" type="Label" parent="."]
layout_mode = 0
offset_left = 16.0
offset_top = 80.0
offset_right = 144.0
offset_bottom = 114.8
text = "Import | Export
to/from Clipboard"
[node name="ImportButton" type="Button" parent="ImportExportLabel"]
layout_mode = 0
offset_top = 48.0
offset_right = 61.0
offset_bottom = 72.0
text = "Import"
[node name="ExportButton" type="Button" parent="ImportExportLabel"]
layout_mode = 0
offset_left = 75.0
offset_top = 48.0
offset_right = 136.0
offset_bottom = 72.0
text = "Export"
[node name="ResetLabel" type="Label" parent="."]
layout_mode = 0
offset_left = 16.0
offset_top = 192.0
offset_right = 91.0
offset_bottom = 207.9
text = "Reset Data"
[node name="ResetXpAndStatsButton" type="Button" parent="ResetLabel"]
layout_mode = 0
offset_top = 24.0
offset_right = 76.0
offset_bottom = 48.0
text = "Reset XP & Stats"
[node name="Info Footer" type="Label" parent="."]
layout_mode = 1
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -240.0
offset_top = -24.0
offset_right = -16.0
offset_bottom = -8.0
grow_horizontal = 0
grow_vertical = 0
text = "asdsadsa"
label_settings = SubResource("LabelSettings_lwwgp")
horizontal_alignment = 1
vertical_alignment = 2
clip_text = true
text_overrun_behavior = 3
script = ExtResource("5_lwwgp")
[connection signal="pressed" from="CloseSettingsButton" to="." method="_on_close_settings_button_pressed"]
[connection signal="pressed" from="ImportExportLabel/ImportButton" to="." method="_on_import_button_pressed"]
[connection signal="pressed" from="ImportExportLabel/ExportButton" to="." method="_on_export_button_pressed"]
[connection signal="pressed" from="ResetLabel/ResetXpAndStatsButton" to="." method="_on_reset_xp_and_stats_button_pressed"]