godot-third-person-basic-scene/scenes/themes/themes.tscn

39 lines
1.1 KiB
Plaintext

[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"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( "1_a1yak" )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Window" type="Window" parent="."]
visible = false
[node name="VBoxContainer" type="VBoxContainer" parent="Window"]
offset_right = 40.0
offset_bottom = 40.0
[node name="Label" type="Label" parent="Window/VBoxContainer"]
offset_right = 98.0
offset_bottom = 26.0
text = "Select theme"
[node name="Select" type="OptionButton" parent="Window/VBoxContainer"]
offset_top = 30.0
offset_right = 98.0
offset_bottom = 61.0
[node name="Quit" type="Button" parent="Window/VBoxContainer"]
offset_top = 65.0
offset_right = 98.0
offset_bottom = 96.0
text = "Quit"
[connection signal="close_requested" from="Window" to="." method="_on_quit_pressed"]
[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"]