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

77 lines
2.1 KiB
Text
Raw Normal View History

2022-02-12 22:15:01 +00:00
[gd_scene load_steps=2 format=3 uid="uid://cl8xk8w3jmta0"]
[ext_resource type="Script" path="res://scenes/controls/controls.gd" id="1_2c8s6"]
[node name="Control" type="Control"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( "1_2c8s6" )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Window" type="Window" parent="."]
2022-02-24 22:08:03 +00:00
title = "EDIT_CONTROL/TITLE"
position = Vector2i(25, 70)
size = Vector2i(800, 500)
2022-02-12 22:15:01 +00:00
visible = false
content_scale_mode = 1
content_scale_aspect = 4
[node name="VBox" type="VBoxContainer" parent="Window"]
2022-02-24 22:08:03 +00:00
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
2022-02-12 22:15:01 +00:00
size_flags_horizontal = 6
size_flags_vertical = 6
2022-02-24 22:08:03 +00:00
__meta__ = {
"_edit_use_custom_anchors": false
}
2022-02-12 22:15:01 +00:00
[node name="Menu" type="HBoxContainer" parent="Window/VBox"]
2022-02-24 22:08:03 +00:00
offset_right = 1024.0
2022-02-12 22:15:01 +00:00
offset_bottom = 31.0
size_flags_horizontal = 3
[node name="SortByInput" type="CheckBox" parent="Window/VBox/Menu"]
2022-02-24 22:08:03 +00:00
offset_right = 510.0
2022-02-12 22:15:01 +00:00
offset_bottom = 31.0
size_flags_horizontal = 7
2022-02-24 22:08:03 +00:00
text = "EDIT_CONTROL/SORT_BY_INPUT"
2022-02-12 22:15:01 +00:00
[node name="Reload" type="Button" parent="Window/VBox/Menu"]
2022-02-24 22:08:03 +00:00
offset_left = 514.0
offset_right = 1024.0
2022-02-12 22:15:01 +00:00
offset_bottom = 31.0
size_flags_horizontal = 7
2022-02-24 22:08:03 +00:00
text = "EDIT_CONTROL/RELOAD_SYSTEM_CONFIG"
2022-02-12 22:15:01 +00:00
[node name="Input" type="ScrollContainer" parent="Window/VBox"]
offset_top = 35.0
2022-02-24 22:08:03 +00:00
offset_right = 1024.0
offset_bottom = 565.0
2022-02-12 22:15:01 +00:00
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="Control" type="VBoxContainer" parent="Window/VBox/Input"]
2022-02-24 22:08:03 +00:00
offset_right = 1024.0
offset_bottom = 530.0
2022-02-12 22:15:01 +00:00
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="Quit" type="Button" parent="Window/VBox"]
2022-02-24 22:08:03 +00:00
offset_left = 491.0
offset_top = 569.0
offset_right = 533.0
offset_bottom = 600.0
2022-02-12 22:15:01 +00:00
size_flags_horizontal = 6
2022-02-24 22:08:03 +00:00
size_flags_vertical = 8
text = "EDIT_CONTROL/QUIT"
2022-02-12 22:15:01 +00:00
[connection signal="close_requested" from="Window" to="." method="_on_quit_pressed"]
[connection signal="pressed" from="Window/VBox/Menu/SortByInput" to="." method="_on_sort_by_input_pressed"]
[connection signal="pressed" from="Window/VBox/Menu/Reload" to="." method="reload_system_config"]
[connection signal="pressed" from="Window/VBox/Quit" to="." method="_on_quit_pressed"]