40 lines
1.3 KiB
Text
40 lines
1.3 KiB
Text
[gd_scene load_steps=2 format=3 uid="uid://cb0gfweooxdsl"]
|
|
|
|
[ext_resource type="Script" path="res://scenes/themes/themes.gd" id="1_a1yak"]
|
|
|
|
[node name="Control" type="Control"]
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
script = ExtResource("1_a1yak")
|
|
|
|
[node name="Window" type="Window" parent="."]
|
|
size = Vector2i(300, 100)
|
|
visible = false
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="Window"]
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
metadata/_edit_use_custom_anchors = false
|
|
|
|
[node name="Label" type="Label" parent="Window/VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "Select theme"
|
|
|
|
[node name="Select" type="OptionButton" parent="Window/VBoxContainer"]
|
|
layout_mode = 2
|
|
size_flags_vertical = 3
|
|
|
|
[node name="Quit" type="Button" parent="Window/VBoxContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 4
|
|
text = "Quit"
|
|
|
|
[connection signal="close_requested" from="Window" to="." method="_on_quit_pressed"]
|
|
[connection signal="visibility_changed" from="Window" to="." method="_on_window_visibility_changed"]
|
|
[connection signal="item_selected" from="Window/VBoxContainer/Select" to="." method="_on_select_item_selected"]
|
|
[connection signal="pressed" from="Window/VBoxContainer/Quit" to="." method="_on_quit_pressed"]
|