godot-third-person-basic-scene/scenes/languages/languages.tscn
2022-06-26 15:20:42 +02:00

50 lines
1.6 KiB
Plaintext

[gd_scene load_steps=3 format=3 uid="uid://dpvequp5fv27k"]
[ext_resource type="Script" path="res://scenes/languages/languages.gd" id="1_qc7c5"]
[ext_resource type="PackedScene" uid="uid://otvln5ol34bj" path="res://scenes/languages/languages2.tscn" id="2_plade"]
[node name="Control" type="Control"]
script = ExtResource( "1_qc7c5" )
[node name="WindowOld" type="Window" parent="."]
title = "Language"
position = Vector2i(50, 100)
size = Vector2i(300, 150)
visible = false
[node name="VBoxContainer" type="VBoxContainer" parent="WindowOld"]
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 3
size_flags_vertical = 3
metadata/_edit_use_custom_anchors = false
[node name="Label" type="Label" parent="WindowOld/VBoxContainer"]
offset_right = 1024.0
offset_bottom = 26.0
text = "Select language"
[node name="Select" type="OptionButton" parent="WindowOld/VBoxContainer"]
offset_top = 30.0
offset_right = 1024.0
offset_bottom = 565.0
size_flags_vertical = 3
metadata/_edit_use_custom_anchors = false
[node name="Quit" type="Button" parent="WindowOld/VBoxContainer"]
offset_left = 491.0
offset_top = 569.0
offset_right = 533.0
offset_bottom = 600.0
size_flags_horizontal = 4
size_flags_vertical = 8
text = "Quit"
[node name="Window" parent="." instance=ExtResource( "2_plade" )]
[connection signal="close_requested" from="WindowOld" to="." method="_on_quit_pressed"]
[connection signal="item_selected" from="WindowOld/VBoxContainer/Select" to="." method="_on_select_item_selected"]
[connection signal="pressed" from="WindowOld/VBoxContainer/Quit" to="." method="_on_quit_pressed"]