Co-authored-by: Dennis Ploeger <develop@dieploegers.de> Co-authored-by: dploeger <dploeger@users.noreply.github.com>
66 lines
2.2 KiB
Plaintext
66 lines
2.2 KiB
Plaintext
[gd_scene load_steps=6 format=2]
|
|
|
|
[ext_resource path="res://game/ui/commons/load_save_slot/load_save_slot.tscn" type="PackedScene" id=1]
|
|
[ext_resource path="res://game/ui/commons/save/save_game.gd" type="Script" id=2]
|
|
[ext_resource path="res://game/ui/commons/fonts/caslonantique.tres" type="DynamicFont" id=3]
|
|
[ext_resource path="res://game/ui/commons/save/save_name_popup.tscn" type="PackedScene" id=4]
|
|
[ext_resource path="res://game/ui/commons/save/overwrite_confirm_popup.tscn" type="PackedScene" id=5]
|
|
|
|
[node name="save_game" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
script = ExtResource( 2 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
slot_ui_scene = ExtResource( 1 )
|
|
|
|
[node name="save_name_popup" parent="." instance=ExtResource( 4 )]
|
|
|
|
[node name="overwrite_confirm_popup" parent="." instance=ExtResource( 5 )]
|
|
|
|
[node name="CenterContainer" type="CenterContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"]
|
|
margin_left = 390.0
|
|
margin_top = 184.0
|
|
margin_right = 890.0
|
|
margin_bottom = 715.0
|
|
|
|
[node name="ScrollContainer" type="ScrollContainer" parent="CenterContainer/VBoxContainer"]
|
|
margin_right = 500.0
|
|
margin_bottom = 500.0
|
|
rect_min_size = Vector2( 500, 500 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="slots" type="VBoxContainer" parent="CenterContainer/VBoxContainer/ScrollContainer"]
|
|
margin_right = 500.0
|
|
margin_bottom = 500.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="back" type="Button" parent="CenterContainer/VBoxContainer"]
|
|
margin_top = 504.0
|
|
margin_right = 500.0
|
|
margin_bottom = 531.0
|
|
custom_fonts/font = ExtResource( 3 )
|
|
text = "OPTIONS_BACK"
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[connection signal="savegame_cancel" from="save_name_popup" to="." method="_on_save_name_popup_savegame_cancel"]
|
|
[connection signal="savegame_name_ok" from="save_name_popup" to="." method="_on_save_name_popup_savegame_name_ok"]
|
|
[connection signal="confirm_yes" from="overwrite_confirm_popup" to="." method="_on_overwrite_confirm_popup_confirm_yes"]
|
|
[connection signal="pressed" from="CenterContainer/VBoxContainer/back" to="." method="_on_back_pressed"]
|