| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- [gd_scene load_steps=3 format=3 uid="uid://dta7rfalv4uvd"]
- [ext_resource type="Script" uid="uid://c7krcoq5poxdn" path="res://scenes/main/scripts/audiosettings.gd" id="2_7qbns"]
- [ext_resource type="Script" uid="uid://c503vew41pw80" path="res://scenes/main/scripts/color_rect_theme_invert.gd" id="2_am4qw"]
- [node name="AudioSettings" type="Window"]
- title = "Audio Settings"
- initial_position = 2
- size = Vector2i(600, 200)
- transient = true
- unresizable = true
- always_on_top = true
- script = ExtResource("2_7qbns")
- [node name="ColorRect" type="ColorRect" parent="." groups=["invertable_background"]]
- offset_right = 604.0
- offset_bottom = 204.0
- color = Color(0.101961, 0.101961, 0.101961, 0.6)
- script = ExtResource("2_am4qw")
- [node name="VBoxContainer" type="VBoxContainer" parent="."]
- offset_left = 12.0
- offset_top = 6.0
- offset_right = 588.0
- offset_bottom = 192.0
- [node name="WindowTitle" type="Label" parent="VBoxContainer"]
- layout_mode = 2
- theme_override_font_sizes/font_size = 25
- text = "Audio Settings"
- [node name="Label" type="Label" parent="VBoxContainer"]
- layout_mode = 2
- text = "Available audio devices:"
- [node name="ItemList" type="ItemList" parent="VBoxContainer"]
- custom_minimum_size = Vector2(0, 100)
- layout_mode = 2
- allow_reselect = true
- [node name="MarginContainer" type="MarginContainer" parent="VBoxContainer"]
- custom_minimum_size = Vector2(0, 1)
- layout_mode = 2
- [node name="DeviceInfo" type="Label" parent="VBoxContainer"]
- layout_mode = 2
- text = "Current device:"
- [node name="DevicePollTimer" type="Timer" parent="."]
- [connection signal="about_to_popup" from="." to="." method="_on_about_to_popup"]
- [connection signal="close_requested" from="." to="." method="_on_close_requested"]
- [connection signal="item_selected" from="VBoxContainer/ItemList" to="." method="_on_item_list_item_selected"]
- [connection signal="timeout" from="DevicePollTimer" to="." method="_on_device_poll_timer_timeout"]
|