82 lines
2.7 KiB
Plaintext
82 lines
2.7 KiB
Plaintext
[gd_scene load_steps=2 format=3]
|
|
|
|
[ext_resource type="Script" path="res://core/prestige/prestige_panel.gd" id="1_7fdwq"]
|
|
|
|
[node name="PrestigePanel" type="PanelContainer"]
|
|
offset_right = 420.0
|
|
offset_bottom = 206.0
|
|
script = ExtResource("1_7fdwq")
|
|
|
|
[node name="MarginContainer" type="MarginContainer" parent="."]
|
|
layout_mode = 2
|
|
theme_override_constants/margin_left = 10
|
|
theme_override_constants/margin_top = 10
|
|
theme_override_constants/margin_right = 10
|
|
theme_override_constants/margin_bottom = 10
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
|
|
layout_mode = 2
|
|
theme_override_constants/separation = 8
|
|
|
|
[node name="Title" type="Label" parent="MarginContainer/VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "Prestige"
|
|
|
|
[node name="StatsGrid" type="GridContainer" parent="MarginContainer/VBoxContainer"]
|
|
layout_mode = 2
|
|
columns = 2
|
|
|
|
[node name="TotalTitle" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "Total"
|
|
|
|
[node name="TotalValue" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "0"
|
|
|
|
[node name="PendingTitle" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "Pending"
|
|
|
|
[node name="PendingValue" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "0"
|
|
|
|
[node name="MultiplierTitle" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "Multiplier"
|
|
|
|
[node name="MultiplierValue" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "x1.00"
|
|
|
|
[node name="BasisTitle" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "Basis"
|
|
|
|
[node name="BasisValue" type="Label" parent="MarginContainer/VBoxContainer/StatsGrid"]
|
|
layout_mode = 2
|
|
text = "-"
|
|
|
|
[node name="Buttons" type="HBoxContainer" parent="MarginContainer/VBoxContainer"]
|
|
layout_mode = 2
|
|
theme_override_constants/separation = 8
|
|
|
|
[node name="ResetButton" type="Button" parent="MarginContainer/VBoxContainer/Buttons"]
|
|
layout_mode = 2
|
|
text = "Prestige Reset"
|
|
|
|
[node name="SaveButton" type="Button" parent="MarginContainer/VBoxContainer/Buttons"]
|
|
layout_mode = 2
|
|
text = "Save"
|
|
|
|
[node name="ConfirmDialog" type="ConfirmationDialog" parent="."]
|
|
title = "Prestige Reset"
|
|
ok_button_text = "Prestige"
|
|
dialog_text = "Reset this run?"
|
|
|
|
[connection signal="pressed" from="MarginContainer/VBoxContainer/Buttons/ResetButton" to="." method="_on_reset_button_pressed"]
|
|
[connection signal="pressed" from="MarginContainer/VBoxContainer/Buttons/SaveButton" to="." method="_on_save_button_pressed"]
|
|
[connection signal="canceled" from="ConfirmDialog" to="." method="_on_confirm_dialog_canceled"]
|
|
[connection signal="confirmed" from="ConfirmDialog" to="." method="_on_confirm_dialog_confirmed"]
|