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

38 lines
1.1 KiB
Plaintext

[gd_scene load_steps=2 format=3 uid="uid://dpvequp5fv27k"]
[ext_resource type="Script" path="res://scenes/languages/languages.gd" id="1_qc7c5"]
[node name="Control" type="Control"]
script = ExtResource( "1_qc7c5" )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Window" type="Window" parent="."]
title = "Language"
visible = false
[node name="VBoxContainer" type="VBoxContainer" parent="Window"]
anchor_right = 1.0
anchor_bottom = 1.0
offset_right = 40.0
offset_bottom = 40.0
[node name="Label" type="Label" parent="Window/VBoxContainer"]
offset_right = 40.0
offset_bottom = 23.0
text = "Select language"
[node name="Select" type="OptionButton" parent="Window/VBoxContainer"]
offset_right = 43.0
offset_bottom = 31.0
[node name="Quit" type="Button" parent="Window/VBoxContainer"]
offset_top = 35.0
offset_right = 43.0
offset_bottom = 66.0
text = "Quit"
[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"]